mirror of
https://github.com/vercel/commerce.git
synced 2025-04-25 20:37:51 +00:00
17 lines
257 B
TypeScript
17 lines
257 B
TypeScript
export const getPageQuery = /* GraphQL */ `
|
|
query($first: Int!) {
|
|
pages(first: $first) {
|
|
edges {
|
|
node {
|
|
id
|
|
title
|
|
handle
|
|
body
|
|
url
|
|
}
|
|
}
|
|
}
|
|
}
|
|
`
|
|
export default getPageQuery
|