Skip to content

Instantly share code, notes, and snippets.

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