Skip to content

Instantly share code, notes, and snippets.

@robertcoopercode
Last active November 25, 2018 02:34
Show Gist options
  • Save robertcoopercode/d2995bdf56f798eaf18e9f420cccdaa5 to your computer and use it in GitHub Desktop.
Save robertcoopercode/d2995bdf56f798eaf18e9f420cccdaa5 to your computer and use it in GitHub Desktop.
...
export const aboutPageQuery = graphql`
query AboutPage($id: String!) {
markdownRemark(id: { eq: $id }) {
html
frontmatter {
title
mainImage {
image
imageAlt
}
gallery {
image
imageAlt
}
developerGroups
organizers {
title
gallery {
image
imageAlt
name
}
}
seo {
browserTitle
title
description
}
}
}
...LayoutFragment
}
`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment