mirror of
https://github.com/vercel/commerce.git
synced 2025-04-03 18:35:52 +00:00
18 lines
279 B
TypeScript
18 lines
279 B
TypeScript
export const getPageQuery = /* GraphQL */ `
|
|
query($first: Int!) {
|
|
pages(first: $first) {
|
|
edges {
|
|
node {
|
|
id
|
|
title
|
|
handle
|
|
body
|
|
bodySummary
|
|
url
|
|
}
|
|
}
|
|
}
|
|
}
|
|
`
|
|
export default getPageQuery
|