react-code-dataset
/
next.js
/examples
/cms-wordpress
/src
/components
/Templates
/Page
/PageQuery.ts
| import gql from "graphql-tag"; | |
| export const PageQuery = gql` | |
| query PageQuery($id: ID!, $preview: Boolean = false) { | |
| page(id: $id, idType: DATABASE_ID, asPreview: $preview) { | |
| content | |
| } | |
| } | |
| `; | |