-
Hello. I've successfully built a node app on render.com that can access a hasura endpoint on the server-side. When I try to use a subscription from the client side with graphql-ws, it instantly disconnects. I can see in the logs that it is connecting and instantly disconnecting:
In addition, in the browser, what I'm seeing is that it is receiving a native The same application works perfectly when connecting to the local hasura database on I'm completely out of options and ideas here, any suggestions to debug this? I've set up a local proxy so I can use ssl locally to debug this, connecting to the remote hasura server from my dev environment. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I figured out the issue: hasura does not support I swapped out for apollo transport and it worked right away. |
Beta Was this translation helpful? Give feedback.
I figured out the issue: hasura does not support
graphql-ws
for wss (it's listed as beta, but probably should be listed as "does not work at all").I swapped out for apollo transport and it worked right away.