Skip to content

Instantly share code, notes, and snippets.

@ajmalafif
Created February 3, 2019 12:44
Show Gist options
  • Select an option

  • Save ajmalafif/9a0a30d47cb12084a6904b5bb7ae5998 to your computer and use it in GitHub Desktop.

Select an option

Save ajmalafif/9a0a30d47cb12084a6904b5bb7ae5998 to your computer and use it in GitHub Desktop.
netsby
export const ExperiencePageQuery = graphql`
query ExperiencePage($id: String!) {
markdownRemark(id: { eq: $id }) {
html
frontmatter {
title
heading
description
intro {
blurbs {
image {
childImageSharp {
fixed(width: 200, height: 200) {
...GatsbyImageSharpFixed_tracedSVG
}
}
}
heading
text
}
heading
description
}
main {
heading
description
image3 {
alt
image {
childImageSharp {
fluid(maxWidth: 1075, quality: 72) {
...GatsbyImageSharpFluid_tracedSVG
}
}
}
}
}
}
}
}
`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment