Files
commerce/framework/woocommerce/wp/queries/get-all-pages-query.ts.t
2021-09-18 00:52:28 +03:00

15 lines
253 B
Raku

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