Subscriptions
Get real-time updates from your GraphQL server
In addition to queries and mutations, GraphQL supports a third operation type: subscriptions.
Like queries, subscriptions enable you to fetch data. Unlike queries, subscriptions are long-lasting operations that can change their result over time. They can maintain an active connection to your GraphQL server (most commonly via WebSocket), enabling the server to push updates to the subscription's result.
Subscriptions are useful for notifying your client in real time about changes to back-end data, such as the creation of a new object or updates to an important field.
When to use subscriptions
In the majority of cases, your client should not use subscriptions to stay up to date with your backend. Instead, you should poll intermittently with queries, or re-execute queries on demand when a user performs a relevant action (such as clicking a button).
You should use subscriptions for the following:
Small, incremental changes to large objects. Repeatedly polling for a large object is expensive, especially when most of the object's fields rarely change. Instead, you can fetch the object's initial state with a query, and your server can proactively push updates to individual fields as they occur.
Low-latency, real-time updates. For example, a chat application's client wants to receive new messages as soon as they're available.
Note: Subscriptions cannot be used to listen to local client events, like subscribing to changes in the cache. Subscriptions are intended to be used to subscribe to external data changes, and have those received changes be stored in the cache. You can then leverage Apollo Client's observability model to watch for changes in the cache, using
client.watchQueryoruseQuery.
Supported subscription protocols
The GraphQL spec does not define a specific protocol for sending subscription requests. Apollo Client supports the following protocols for subscriptions:
WebSocket, using one of the following subprotocols:
subscriptions-transport-ws(⚠️ unmaintained)
HTTP, using chunked multipart responses (Apollo Client
3.7.11and later)
You must use the same protocol as the GraphQL endpoint you're communicating with.
WebSocket subprotocols
The first popular JavaScript library to implement subscriptions over WebSocket is called subscriptions-transport-ws. This library is no longer actively maintained. Its successor is a library called graphql-ws. These two libraries do not use the same WebSocket subprotocol, so you need to use the same subprotocol that your GraphQL endpoint uses.
The WebSocket setup section below uses graphql-ws. If your endpoint uses subscriptions-transport-ws, see this section for differences in configuration.
Note: Confusingly, the
subscriptions-transport-wslibrary calls its WebSocket subprotocolgraphql-ws, and thegraphql-wslibrary calls its subprotocolgraphql-transport-ws! In this article, we refer to the two libraries (subscriptions-transport-wsandgraphql-ws), not the two subprotocols.
HTTP
To use Apollo Client with a GraphQL endpoint that supports multipart subscriptions over HTTP, make sure you're using version 3.7.11 or later.
Aside from updating your client version, no additional configuration is required! Apollo Client automatically sends the required headers with the request if the terminating HTTPLink is passed a subscription operation.
Usage with Relay or urql
To consume a multipart subscription over HTTP in an app using Relay or urql, Apollo Client provides network layer adapters that handle the parsing of the multipart response format.
Relay
1import { createFetchMultipartSubscription } from "@apollo/client/utilities/subscriptions/relay";
2import { Environment, Network, RecordSource, Store } from "relay-runtime";
3
4const fetchMultipartSubs = createFetchMultipartSubscription(
5 "https://api.example.com"
6);
7
8const network = Network.create(fetchQuery, fetchMultipartSubs);
9
10export const RelayEnvironment = new Environment({
11 network,
12 store: new Store(new RecordSource()),
13});urql
1import { createFetchMultipartSubscription } from "@apollo/client/utilities/subscriptions/urql";
2import { Client, fetchExchange, subscriptionExchange } from "@urql/core";
3
4const url = "https://api.example.com";
5
6const multipartSubscriptionForwarder = createFetchMultipartSubscription(
7 url
8);
9
10const client = new Client({
11 url,
12 exchanges: [
13 fetchExchange,
14 subscriptionExchange({
15 forwardSubscription: multipartSubscriptionForwarder,
16 }),
17 ],
18});Defining a subscription
You define a subscription on both the server side and the client side, just like you do for queries and mutations.
Server side
You define available subscriptions in your GraphQL schema as fields of the Subscription type. The following commentAdded subscription notifies a subscribing client whenever a new comment is added to a particular blog post (specified by postID):
1type Subscription {
2 commentAdded(postID: ID!): Comment
3}For more information on implementing support for subscriptions on the server side, see the Apollo Server documentation for subscriptions.
Client side
In your application's client, you define the shape of each subscription you want Apollo Client to execute, like so:
1const COMMENTS_SUBSCRIPTION: TypedDocumentNode<
2 OnCommentAddedSubscription,
3 OnCommentAddedSubscriptionVariables
4> = gql`
5 subscription OnCommentAdded($postID: ID!) {
6 commentAdded(postID: $postID) {
7 id
8 content
9 }
10 }
11`;1const COMMENTS_SUBSCRIPTION = gql`
2 subscription OnCommentAdded($postID: ID!) {
3 commentAdded(postID: $postID) {
4 id
5 content
6 }
7 }
8`;When Apollo Client executes the OnCommentAdded subscription, it establishes a connection to your GraphQL server and listens for response data. Unlike with a query, there is no expectation that the server will immediately process and return a response. Instead, your server only pushes data to your client when a particular event occurs on your backend.
Whenever your GraphQL server does push data to a subscribing client, that data conforms to the structure of the executed subscription, just like it does for a query:
1{
2 "data": {
3 "commentAdded": {
4 "id": "123",
5 "content": "What a thoughtful and well written post!"
6 }
7 }
8}WebSocket setup
1. Install required libraries
Apollo Link is a library that helps you customize Apollo Client's network communication. You can use it to define a link chain that modifies your operations and routes them to the appropriate destination.
To execute subscriptions over WebSocket, you can add a GraphQLWsLink to your link chain. This link requires the graphql-ws library. Install it like so:
1npm install graphql-ws2. Initialize a GraphQLWsLink
Import and initialize a GraphQLWsLink object in the same project file where you initialize ApolloClient:
1import { GraphQLWsLink } from '@apollo/client/link/subscriptions';
2import { createClient } from 'graphql-ws';
3
4const wsLink = new GraphQLWsLink(createClient({
5 url: 'ws://localhost:4000/subscriptions',
6}));Replace the value of the url option with your GraphQL server's subscription-specific WebSocket endpoint. If you're using Apollo Server, see Setting a subscription endpoint.
3. Split communication by operation (recommended)
Although Apollo Client can use your GraphQLWsLink to execute all operation types, in most cases it should continue using HTTP for queries and mutations. This is because queries and mutations don't require a stateful or long-lasting connection, making HTTP more efficient and scalable if a WebSocket connection isn't already present.
To support this, the @apollo/client library provides a split function that lets you use one of two different Links, according to the result of a boolean check.
The following example expands on the previous one by initializing both a GraphQLWsLink and an HttpLink. It then uses the split function to combine those two Links into a single Link that uses one or the other according to the type of operation being executed.
1import { split, HttpLink } from '@apollo/client';
2import { getMainDefinition } from '@apollo/client/utilities';
3import { GraphQLWsLink } from '@apollo/client/link/subscriptions';
4import { createClient } from 'graphql-ws';
5
6const httpLink = new HttpLink({
7 uri: 'http://localhost:4000/graphql'
8});
9
10const wsLink = new GraphQLWsLink(createClient({
11 url: 'ws://localhost:4000/subscriptions',
12}));
13
14// The split function takes three parameters:
15//
16// * A function that's called for each operation to execute
17// * The Link to use for an operation if the function returns a "truthy" value
18// * The Link to use for an operation if the function returns a "falsy" value
19const splitLink = split(
20 ({ query }) => {
21 const definition = getMainDefinition(query);
22 return (
23 definition.kind === 'OperationDefinition' &&
24 definition.operation === 'subscription'
25 );
26 },
27 wsLink,
28 httpLink,
29);Using this logic, queries and mutations will use HTTP as normal, and subscriptions will use WebSocket.
4. Provide the link chain to Apollo Client
After you define your link chain, you provide it to Apollo Client via the link constructor option:
1import { ApolloClient, InMemoryCache } from '@apollo/client';
2
3// ...code from the above example goes here...
4
5const client = new ApolloClient({
6 link: splitLink,
7 cache: new InMemoryCache()
8});1import { ApolloClient, InMemoryCache } from '@apollo/client';
2
3// ...code from the above example goes here...
4
5const client = new ApolloClient({
6 link: splitLink,
7 cache: new InMemoryCache()
8});If you provide the
linkoption, it takes precedence over theurioption (urisets up a default HTTP link chain using the provided URL).
5. Authenticate over WebSocket (optional)
It is often necessary to authenticate a client before allowing it to receive subscription results. To do this, you can provide a connectionParams option to the GraphQLWsLink constructor, like so:
1import { GraphQLWsLink } from '@apollo/client/link/subscriptions';
2import { createClient } from 'graphql-ws';
3
4const wsLink = new GraphQLWsLink(createClient({
5 url: 'ws://localhost:4000/subscriptions',
6 connectionParams: {
7 authToken: user.authToken,
8 },
9}));1import { GraphQLWsLink } from '@apollo/client/link/subscriptions';
2import { createClient } from 'graphql-ws';
3
4const wsLink = new GraphQLWsLink(createClient({
5 url: 'ws://localhost:4000/subscriptions',
6 connectionParams: {
7 authToken: user.authToken,
8 },
9}));Your GraphQLWsLink passes the connectionParams object to your server whenever it connects. Your server receives the connectionParams object and can use it to perform authentication, along with any other connection-related tasks.
Subscriptions via multipart HTTP
No additional libraries or configuration are required. Apollo Client adds the required headers to your request when the default terminating HTTPLink receives a subscription operation at the uri specified when initializing the link or Apollo Client instance.
Note: in order to use subscriptions over multipart HTTP in a React Native application, additional configuration is required. See the React Native docs for more information.
Executing a subscription
You use Apollo Client's useSubscription Hook to execute a subscription from React. Like useQuery, useSubscription returns an object from Apollo Client that contains loading, error, and data properties you can use to render your UI.
The following example component uses the subscription we defined earlier to render the most recent comment that's been added to a specified blog post. Whenever the GraphQL server pushes a new comment to the client, the component re-renders with the new comment.
1const COMMENTS_SUBSCRIPTION: TypedDocumentNode<
2 OnCommentAddedSubscription,
3 OnCommentAddedSubscriptionVariables
4> = gql`
5 subscription OnCommentAdded($postID: ID!) {
6 commentAdded(postID: $postID) {
7 id
8 content
9 }
10 }
11`;
12
13function LatestComment({ postID }: LatestCommentProps) {
14 const { data, loading } = useSubscription(
15 COMMENTS_SUBSCRIPTION,
16 { variables: { postID } }
17 );
18
19 return <h4>New comment: {!loading && data.commentAdded.content}</h4>;
20}1const COMMENTS_SUBSCRIPTION = gql`
2 subscription OnCommentAdded($postID: ID!) {
3 commentAdded(postID: $postID) {
4 id
5 content
6 }
7 }
8`;
9
10function LatestComment({ postID }) {
11 const { data, loading } = useSubscription(
12 COMMENTS_SUBSCRIPTION,
13 { variables: { postID } }
14 );
15
16 return <h4>New comment: {!loading && data.commentAdded.content}</h4>;
17}Subscribing to updates for a query
Whenever a query returns a result in Apollo Client, that result includes a subscribeToMore function. You can use this function to execute a followup subscription that pushes updates to the query's original result.
The
subscribeToMorefunction is similar in structure to thefetchMorefunction that's commonly used for handling pagination. The primary difference is thatfetchMoreexecutes a followup query, whereassubscribeToMoreexecutes a subscription.
As an example, let's start with a standard query that fetches all of the existing comments for a given blog post:
1const COMMENTS_QUERY: TypedDocumentNode<
2 CommentsForPostQuery,
3 CommentsForPostQueryVariables
4> = gql`
5 query CommentsForPost($postID: ID!) {
6 post(postID: $postID) {
7 comments {
8 id
9 content
10 }
11 }
12 }
13`;
14
15function CommentsPageWithData({ params }: CommentsPageWithDataProps) {
16 const result = useQuery(
17 COMMENTS_QUERY,
18 { variables: { postID: params.postID } }
19 );
20
21 return <CommentsPage {...result} />;
22}1const COMMENTS_QUERY = gql`
2 query CommentsForPost($postID: ID!) {
3 post(postID: $postID) {
4 comments {
5 id
6 content
7 }
8 }
9 }
10`;
11
12function CommentsPageWithData({ params }) {
13 const result = useQuery(
14 COMMENTS_QUERY,
15 { variables: { postID: params.postID } }
16 );
17
18 return <CommentsPage {...result} />;
19}Let's say we want our GraphQL server to push an update to our client as soon as a new comment is added to the post. First we need to define the subscription that Apollo Client will execute when the COMMENTS_QUERY returns:
1const COMMENTS_SUBSCRIPTION: TypedDocumentNode<
2 OnCommentAddedSubscription,
3 OnCommentAddedSubscriptionVariables
4> = gql`
5 subscription OnCommentAdded($postID: ID!) {
6 commentAdded(postID: $postID) {
7 id
8 content
9 }
10 }
11`;1const COMMENTS_SUBSCRIPTION = gql`
2 subscription OnCommentAdded($postID: ID!) {
3 commentAdded(postID: $postID) {
4 id
5 content
6 }
7 }
8`;Next, we modify our CommentsPageWithData component to call subscribeToMore after the comments query loads.
1function CommentsPageWithData({ params }: CommentsPageWithDataProps) {
2 const { subscribeToMore, ...result } = useQuery(COMMENTS_QUERY, {
3 variables: { postID: params.postID },
4 });
5
6 useEffect(() => {
7 // This assumes you want to wait to start the subscription
8 // after the query has loaded.
9 if (result.data) {
10 const unsubscribe = subscribeToMore({
11 document: COMMENTS_SUBSCRIPTION,
12 variables: { postID: params.postID },
13 updateQuery: (prev, { subscriptionData }) => {
14 if (!subscriptionData.data) return prev;
15 const newFeedItem = subscriptionData.data.commentAdded;
16
17 return Object.assign({}, prev, {
18 post: {
19 comments: [newFeedItem, ...prev.post.comments],
20 },
21 });
22 },
23 });
24
25 return () => {
26 unsubscribe();
27 };
28 }
29 }, [result.data, params.postID, subscribeToMore]);
30
31 return <CommentsPage {...result} />;
32}1function CommentsPageWithData({ params }) {
2 const { subscribeToMore, ...result } = useQuery(COMMENTS_QUERY, {
3 variables: { postID: params.postID },
4 });
5
6 useEffect(() => {
7 if (result.data) {
8 const unsubscribe = subscribeToMore({
9 document: COMMENTS_SUBSCRIPTION,
10 variables: { postID: params.postID },
11 updateQuery: (prev, { subscriptionData }) => {
12 if (!subscriptionData.data) return prev;
13 const newFeedItem = subscriptionData.data.commentAdded;
14
15 return Object.assign({}, prev, {
16 post: {
17 comments: [newFeedItem, ...prev.post.comments],
18 },
19 });
20 },
21 });
22
23 return () => {
24 unsubscribe();
25 };
26 }
27 }, [result.data, params.postID]);
28
29 return <CommentsPage {...result} />;
30}In the example above, we pass three options to subscribeToMore:
documentindicates the subscription to execute.variablesindicates the variables to include when executing the subscription.updateQueryis a function that tells Apollo Client how to combine the query's currently cached result (prev) with thesubscriptionDatathat's pushed by our GraphQL server. The return value of this function completely replaces the current cached result for the query.
useSubscription API reference
Note: If you're using React Apollo's
Subscriptionrender prop component, the option/result details listed below are still valid (options are component props and results are passed into the render prop function). The only difference is that asubscriptionprop (which holds a GraphQL subscription document parsed into an AST bygql) is also required.
Options
The useSubscription Hook accepts the following options:
ApolloClient<object>An ApolloClient instance. By default useSubscription / Subscription uses the client passed down via context, but a different client can be passed in.
DefaultContextShared context between your component and your network interface (Apollo Link).
ErrorPolicySpecifies the ErrorPolicy to be used for this operation
Record<string, any>Shared context between your component and your network interface (Apollo Link).
FetchPolicyHow you want your component to interact with the Apollo cache. For details, see Setting a fetch policy.
booleanIf true, the hook will not cause the component to rerender. This is useful when you want to control the rendering of your component yourself with logic in the onData and onError callbacks.
Changing this to true when the hook already has data will reset the data to undefined.
onComplete(optional)Requires ≥ 3.7.0
() => voidAllows the registration of a callback function that will be triggered each time the useSubscription Hook / Subscription component completes the subscription.
onData(optional)Requires ≥ 3.7.0
(options: OnDataOptions<TData>) => anyAllows the registration of a callback function that will be triggered each time the useSubscription Hook / Subscription component receives data. The callback options object param consists of the current Apollo Client instance in client, and the received subscription data in data.
onError(optional)Requires ≥ 3.7.0
(error: ApolloError) => voidAllows the registration of a callback function that will be triggered each time the useSubscription Hook / Subscription component receives an error.
boolean | ((options: BaseSubscriptionOptions<TData, TVariables>) => boolean)Determines if your subscription should be unsubscribed and subscribed again when an input to the hook (such as subscription or variables) changes.
booleanDetermines if the current subscription should be skipped. Useful if, for example, variables depend on previous queries and are not ready yet.
TVariablesAn object containing all of the variables your subscription needs to execute
() => void⚠️ Deprecated
Use
onCompleteinstead
Allows the registration of a callback function that will be triggered when the useSubscription Hook / Subscription component completes the subscription.
(options: OnSubscriptionDataOptions<TData>) => any⚠️ Deprecated
Use
onDatainstead
Allows the registration of a callback function that will be triggered each time the useSubscription Hook / Subscription component receives data. The callback options object param consists of the current Apollo Client instance in client, and the received subscription data in subscriptionData.
Result
After being called, the useSubscription Hook returns a result object with the following properties:
MaybeMasked<TData>An object containing the result of your GraphQL subscription. Defaults to an empty object.
ApolloErrorA runtime error with graphQLErrors and networkError properties
booleanA boolean that indicates whether any initial data has been returned
The older subscriptions-transport-ws library
If your server uses subscriptions-transport-ws instead of the newer graphql-ws library, you need to make a few changes to how you set up your link:
Instead of
npm install graphql-ws:Bash1npm install subscriptions-transport-wsInstead of
import { createClient } from 'graphql-ws':JavaScript1import { SubscriptionClient } from 'subscriptions-transport-ws'Instead of
import { GraphQLWsLink } from '@apollo/client/link/subscriptions':JavaScript1import { WebSocketLink } from '@apollo/client/link/ws'The options you pass to
new SubscriptionClientdiffer slightly from those passed tocreateClient:The first argument passed to the
SubscriptionClientconstructor is the URL for your subscription server.The
connectionParamsoption is nested under an options object calledoptionsinstead of being at the top level. (You can also pass thenew SubscriptionClientconstructor arguments directly tonew WebSocketLink.)See the
subscriptions-transport-wsREADME for completeSubscriptionClientAPI docs.
After you create your wsLink, everything else in this article still applies: useSubscription, subscribeToMore, and split links work exactly the same way for both implementations.
The following is an example of a typical WebSocketLink initialization:
1import { WebSocketLink } from "@apollo/client/link/ws";
2import { SubscriptionClient } from "subscriptions-transport-ws";
3
4const wsLink = new WebSocketLink(
5 new SubscriptionClient("ws://localhost:4000/subscriptions", {
6 connectionParams: {
7 authToken: user.authToken
8 }
9 })
10);More details on WebSocketLink's API can be found in its API docs.