1
0
mirror of https://github.com/vercel/commerce.git synced 2025-07-11 06:51:21 +00:00
2021-02-26 09:12:44 +02:00

15 lines
223 B
TypeScript

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