npm run clean && npm run start
- visit: http://localhost:8000/__graphql
- run the following query:
query MyQuery {
item {
featuredImg {
childImageSharp {
gatsbyImageData
}
}
}
product {
id
featuredImg {
childImageSharp {
gatsbyImageData
}
}
items {
id
featuredImg {
childImageSharp {
gatsbyImageData
}
}
}
}
}
- Notice
product.items[i].featuredImage
is null. This should return the same image data that is returned onitem.featuredImg
.