Graphql subscription

Hi @Amerehei,

Sorry you have run into errors. I updated the graphQL subscription example NodeJS code with what is needed in the package.json and improved imports, which should solve the problems for you.

The updated example should run if you follow the following steps:

  1. Create a directory and add package.json to the directory with the following:
{
    "name": "ws-client-demo",
    "version": "1.0.0",
    "type": "module",
    "license": "MIT",
    "dependencies": {
      "graphql": "^15.5.0",
      "graphql-ws": "^4.2.1",
      "ws": "^7.4.4"
    }
}
  1. install dependencies in package.json with npm install
  2. copy the example code to subscriptionTest.js file in the directory
  3. update the sample code with your your JWT_TOKEN and WORKSPACE_ID in subscriptionTest.js
  4. run subscriptionTest.js

This should work with graphql-ws, which is much better than subscriptions-transport-ws.

Can you try the steps above to see if this solves the errors you are having?

1 Like