Subscription
When we had initially set up Apollo, we used Apollo Boost to install the required dependencies. But subscriptions is an advanced use case which Apollo Boost does not support. So we have to install more dependencies to set up subscriptions.
React Apollo Subscriptions Setup
+ $ npm install subscriptions-transport-ws --save
Now we need to update our ApolloClient
instance to point to the subscription server.
Open src/components/App.js
and update the following imports:
- import { ApolloClient, ApolloProvider, InMemoryCache, HttpLink } from '@apollo/client';+ import { ApolloClient, ApolloProvider, InMemoryCache } from '@apollo/client';+ import { WebSocketLink } from "@apollo/client/link/ws";
Update the createApolloClient function to integrate WebSocketLink.
const createApolloClient = (authToken) => {return new ApolloClient({- link: new HttpLink({+ link: new WebSocketLink({- uri: 'https://hasura.io/learn/graphql',+ uri: 'wss://hasura.io/learn/graphql',+ options: {+ reconnect: true,+ connectionParams: {headers: {Authorization: `Bearer ${authToken}`}+ }+ }}),cache: new InMemoryCache(),});};
Note that we are replacing HttpLink with WebSocketLink and hence all GraphQL queries go through a single websocket connection.
Did you find this page helpful?
Start with GraphQL on Hasura for Free
- Build apps and APIs 10x faster
- Built-in authorization and caching
- 8x more performant than hand-rolled APIs