Skip to content

Instantly share code, notes, and snippets.

@matlc
Last active July 30, 2019 01:40
Show Gist options
  • Save matlc/c84e3f26ad5654b3cdf4d6d74190577d to your computer and use it in GitHub Desktop.
Save matlc/c84e3f26ad5654b3cdf4d6d74190577d to your computer and use it in GitHub Desktop.
export const query = graphql`
fragment postFields on PostsJson {
slug
title
content
publishDate(formatString: "MMMM DD, YYYY")
tags
}
fragment authorFields on AuthorsJson {
slug
name
biography
}
query ($id: String!) {
post: postsJson(id: {eq: $id}) {
...postFields
author {
...authorFields
}
}
}
`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment