6

I want to make a subscription to a GraphQL server. The application is running in a NodeJS script (i.e. not in the webbrowser).

Here is what I currently do:

const fetch = require("node-fetch").default;
const apollo = require("apollo-boost");
const ApolloClient = apollo.default;
const { gql } = require("apollo-server");

const apolloClient = new ApolloClient({
  uri: "http://localhost:4000/graphql",
  fetch
});

apolloClient.subscribe({
  query: gql`
    subscription {
      startTaskRequested {
        pkRobot
        taskName
      }
    }
  `,
}).subscribe({
  next(x) { console.log(x) },
  error(err) { console.log(`Finished with error: ${ err }`) },
  complete() { console.log('Finished') }
});

The resulting ouput is:

{ data: { startTaskRequested: null } }
Finished

On the GraphQL Server, I can see that the corresponding resolver is never called.

If I make the same subscription query using Apollo's Playground, the subscription works and I get the results that I expect: Apollo Playground

I bumped my head against this for many hours already and I would greatly appreciate it if someone could point me in the right direction.

TeWu
  • 5,928
  • 2
  • 22
  • 36
AUser
  • 171
  • 1
  • 7

2 Answers2

4

Alright, meanwhile I found a fantastic github repository, which contains the answer to my question: https://github.com/hasura/nodejs-graphql-subscriptions-boilerplate

I'm still not sure why my code above is behaving in this way. If someone is able to explain that, I would appreciate it :-).

AUser
  • 171
  • 1
  • 7
  • I'm having the same issue.I tried using the recommenced graphql-ws https://github.com/enisdenjo/graphql-ws , looking at "Client usage in Node", but the socket closes with error 1002. Next I will try using the package from your link although it is marked as 'no longer maintained' – Jesper Kristiansen Mar 05 '22 at 00:59
1

I have used Apollo Client to run a subscription with Appsync - Uses the ApolloHttpLink and ApolloAuthLink packages, hence can be used for any WS based graphql subscriptions - Try this - https://github.com/kodehash/appsync-nodejs-apollo-client/tree/master