forked from crowetic/commerce
15 lines
253 B
TypeScript
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
|