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