commerce/framework/shopify/utils/queries/get-page-query.ts
2021-02-25 09:55:02 +02:00

17 lines
257 B
TypeScript

export const getPageQuery = /* GraphQL */ `
query($first: Int!) {
pages(first: $first) {
edges {
node {
id
title
handle
body
url
}
}
}
}
`
export default getPageQuery