GraphCMS GraphQL Queries not returning "parsed" #28626
-
I am using GraphCMS for my website, and the queries aren't coming back "parsed." {data.cms.nodes.productName} returns nothing. Here is my code: import React from "react" const productThumbnail= () => { {data.allGraphCmsProducts.nodes.productName} } export default productThumbnail |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I think you should ask this question in GraphCMS source plugin repo: https://github.com/GraphCMS/gatsby-source-graphcms/issues But also why is it |
Beta Was this translation helpful? Give feedback.
I think you should ask this question in GraphCMS source plugin repo: https://github.com/GraphCMS/gatsby-source-graphcms/issues
But also why is it
data.cms.nodes.productName
? When it should bedata.allGraphCmsProducts.nodes.productName
given your query?