Skip to content

Instantly share code, notes, and snippets.

@IliasHad
Created April 21, 2020 22:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IliasHad/d31d6afea5733933808aa12088fdf4f8 to your computer and use it in GitHub Desktop.
Save IliasHad/d31d6afea5733933808aa12088fdf4f8 to your computer and use it in GitHub Desktop.
How to Gatsby Image in Strapi Multiple Image
query {
strapiProducts(slug: { eq: ""}) {
title
description
images {
localFile {
childImageSharp {
fixed(height: 100, width: 100, quality: 100) {
...GatsbyImageSharpFixed
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment