2022-03-09 21:41:08 +04:00

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