mirror of
https://github.com/vercel/commerce.git
synced 2025-03-27 15:55:54 +00:00
15 lines
223 B
TypeScript
15 lines
223 B
TypeScript
export const getPageQuery = /* GraphQL */ `
|
|
query($id: ID!) {
|
|
node(id: $id) {
|
|
id
|
|
... on Page {
|
|
title
|
|
handle
|
|
body
|
|
bodySummary
|
|
}
|
|
}
|
|
}
|
|
`
|
|
export default getPageQuery
|