Matt Yorkgitis
Matt Yorkgitis
Having the same problem as well. I'm guessing the client is not supposed to be using the HASURA_ADMIN_SECRET and only the Bearer token?
I figured it out, checkout this sample: https://github.com/hasura/graphql-engine/tree/master/community/sample-apps/todo-auth0-jwt The important step is adding your PEM key to the Hasura Heroku server so it can authenticate correctly. If you do not...
@clementvp Here is my client setup on the front end. ``` const createApolloClient = authToken => { return new ApolloClient({ link: new WebSocketLink({ uri: HASURA_GRAPHQL_URL, options: { reconnect: true, connectionParams:...
I was able to come up with a simple workaround, but can only guess as to why it works. **TLDR** I hid a `` in the `_app.tsx` outside of the...