1
0
mirror of https://github.com/vercel/commerce.git synced 2025-05-09 03:07:50 +00:00
2021-02-04 13:23:44 +02:00

18 lines
287 B
TypeScript

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