Skip to content

Instantly share code, notes, and snippets.

@matlc
Created July 30, 2019 01:29
Show Gist options
  • Save matlc/46778dd183129ad650ccea0fa13fcf87 to your computer and use it in GitHub Desktop.
Save matlc/46778dd183129ad650ccea0fa13fcf87 to your computer and use it in GitHub Desktop.
import { graphql } from 'gatsby'
export const postFields = graphql`
fragment postFields on PostsJson {
slug
title
content
publishDate(formatString: "MMMM DD, YYYY")
tags
}
`
export const authorFields = graphql`
fragment authorFields on AuthorsJson {
slug
name
biography
}
`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment