commerce/framework/shopify/utils/queries/get-page-query.ts
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