mirror of
https://github.com/vercel/commerce.git
synced 2025-06-20 14:11:20 +00:00
13 lines
218 B
TypeScript
13 lines
218 B
TypeScript
export const getAllPagesQuery = /* GraphQL */ `
|
|
query getAllPages($first: Int = 100) {
|
|
pages(first: $first) {
|
|
edges {
|
|
node {
|
|
id
|
|
title
|
|
slug
|
|
}
|
|
}
|
|
}
|
|
}
|
|
` |