1
0
mirror of https://github.com/vercel/commerce.git synced 2025-07-19 19:01:22 +00:00
2021-04-29 19:22:22 +03:00

15 lines
231 B
TypeScript

export const getPageQuery = /* GraphQL */ `
query getPage($id: ID!) {
node(id: $id) {
id
... on Page {
title
handle
body
bodySummary
}
}
}
`
export default getPageQuery