Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
294 Bytes
import gql from "graphql-tag";
export const PostQuery = gql`
query PostQuery($id: ID!, $preview: Boolean = false) {
post(id: $id, idType: DATABASE_ID, asPreview: $preview) {
content
date
title
author {
node {
name
}
}
}
}
`;