1
0
mirror of https://github.com/vercel/commerce.git synced 2025-05-21 08:56:58 +00:00
Chloe b08cf040ce
feat: implement new footer
Signed-off-by: Chloe <pinkcloudvnn@gmail.com>
2024-04-16 16:53:46 +07:00

15 lines
225 B
TypeScript

export const getMenuQuery = /* GraphQL */ `
query getMenu($handle: String!) {
menu(handle: $handle) {
items {
title
url
items {
title
url
}
}
}
}
`;