commerce/framework/shopify/utils/queries/get-page-query.ts
2021-05-25 15:16:17 -03: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