Skip to content

Instantly share code, notes, and snippets.

@chetanraj
Created October 19, 2020 12:03
Show Gist options
  • Save chetanraj/af17dd4476955d7accea752a9c32da18 to your computer and use it in GitHub Desktop.
Save chetanraj/af17dd4476955d7accea752a9c32da18 to your computer and use it in GitHub Desktop.
export const pageQuery = graphql`
query BlogPostBySlug($slug: String!) {
site {
siteMetadata {
title
}
}
markdownRemark(fields: { slug: { eq: $slug } }) {
id
excerpt(pruneLength: 160)
html
----> htmlAst
frontmatter {
title
date(formatString: "MMMM DD, YYYY")
description
}
}
}
`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment