Created
February 3, 2019 12:44
-
-
Save ajmalafif/9a0a30d47cb12084a6904b5bb7ae5998 to your computer and use it in GitHub Desktop.
netsby
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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