1
0
mirror of https://github.com/vercel/commerce.git synced 2025-05-13 05:07:51 +00:00
2021-03-02 21:05:13 -06: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