Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ricardoaguiar/a424ea49f28ea8ae2168e8aaad1e65a0 to your computer and use it in GitHub Desktop.
Save ricardoaguiar/a424ea49f28ea8ae2168e8aaad1e65a0 to your computer and use it in GitHub Desktop.
TextBlock Gatsby-Contentful Fragment
import { graphql } from "gatsby"
export const TextQuery = graphql`
fragment TextBlock on ContentfulTextBlock {
id
bodyContent {
json
}
sys {
contentType {
sys {
id
}
}
}
}
`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment