Tag: fetch-api
-
Shopify GraphQL using fetch API, returns empty json, no errors
1 Trying to just fetch the name of my store in a React component using the Fetch API and GraphQL endpoint of Shopify. I created a Shopify store, gave permissions to the Storefront API and crafted this in my componentDidMount() section of my react component. let query = ‘{ shop { name } }’; console.log(JSON.stringify(query));…