Shopify app with GraphQL failed to work when developing on Heroku Shopify app with GraphQL failed to work when developing on Heroku heroku heroku

Shopify app with GraphQL failed to work when developing on Heroku


The Shopify tutorial suggests using isomorphic-fetch for the server side. I tried including it in the Next.js side and the build went successful.

In my _app.js

require('isomorphic-fetch');import ApolloClient from 'apollo-boost';...const client = new ApolloClient({  fetchOptions: {    credentials: 'include'  },});