Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
208 Bytes
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
}
}
`;