2022-01-14 18:29:24 -05:00

14 lines
208 B
TypeScript

export const PageMany = /* GraphQL */ `
query PageMany($first: Int = 100) {
pages(first: $first) {
edges {
node {
id
title
slug
}
}
}
}
`