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:
- 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"
}
}
- install dependencies in package.json with
npm install
- copy the example code to
subscriptionTest.js
file in the directory - update the sample code with your your
JWT_TOKEN
andWORKSPACE_ID
insubscriptionTest.js
- 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?