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
}
}
}
}
`;