Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

apollo-link

apollographql4.7mMIT1.2.14TypeScript support: included

Flexible, lightweight transport layer for GraphQL

readme

apollo-link

Purpose

apollo-link is a standard interface for modifying control flow of GraphQL requests and fetching GraphQL results, designed to provide a simple GraphQL client that is capable of extensions. The targeted use cases of apollo-link are highlighted below:

  • fetch queries directly without normalized cache
  • network interface for Apollo Client
  • network interface for Relay Modern
  • fetcher for

Apollo Link is the interface for creating new links in your application.

The client sends a request as a method call to a link and can recieve one or more (in the case of subscriptions) responses from the server. The responses are returned using the Observer pattern.

Apollo Link Chain

Results from the server can be provided by calling next(result) on the observer. In the case of a network/transport error (not a GraphQL Error) the error(err) method can be used to indicate a response will not be recieved. If multiple responses are not supported by the link, complete() should be called to inform the client no further data will be provided.

In the case of an intermediate link, a second argument to request(operation, forward) is the link to forward(operation) to. forward returns an observable and it can be returned directly or subscribed to.

forward(operation).subscribe({
  next: result => {
    handleTheResult(result)
  },
  error: error => {
    handleTheNetworkError(error)
  },
});

Implementing a basic custom transport

import { ApolloLink, Observable } from 'apollo-link';

export class CustomApolloLink extends ApolloLink {
  request(operation /*, forward*/) {
    //Whether no one is listening anymore
    let unsubscribed = false;

    return new Observable(observer => {
      somehowGetOperationToServer(operation, (error, result) => {
        if (unsubscribed) return;
        if (error) {
          //Network error
          observer.error(error);
        } else {
          observer.next(result);
          observer.complete(); //If subscriptions not supported
        }
      });

      function unsubscribe() {
        unsubscribed = true;
      }

      return unsubscribe;
    });
  }
}

Installation

npm install apollo-link --save

changelog

Change log


NOTE: This changelog is no longer maintained. Changes are now tracked in the top level CHANGELOG.md.


1.2.4

  • No changes

1.2.3

  • Added graphql 14 to peer and dev deps; Updated @types/graphql to 14
    @hwillson in #789

1.2.2

  • Update apollo-link #559
  • export graphql types and add @types/graphql as a regular dependency PR#576
  • moved @types/node to dev dependencies in package.josn to avoid collisions with other projects. PR#540

1.2.1

  • update apollo link with zen-observable-ts to remove import issues PR#515

1.2.0

  • Add fromError Observable helper
  • change import method of zen-observable for rollup compat

1.1.0

  • Expose #execute on ApolloLink as static

1.0.7

1.0.6

  • update rollup

1.0.5

  • fix bug where context wasn't merged when setting it

1.0.4

  • export link util helpers

1.0.3

  • removed requiring query on initial execution check
  • moved to move efficent rollup build

1.0.1, 1.0.2

  • preleases for dev tool integation

0.8.0

  • added support for extensions on an operation

0.7.0

  • new operation API and start of changelog