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