1
0
mirror of https://github.com/vercel/commerce.git synced 2025-05-09 19:27:53 +00:00
2021-02-25 11:16:44 +02:00

15 lines
253 B
TypeScript

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