JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 27555
  • Score
    100M100P100Q126392F
  • License MIT

Lightweight implementation of fetch for GraphQL requests

Package Exports

  • apollo-fetch

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (apollo-fetch) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

apollo-fetch

apollo-fetch is a lightweight fetch for GraphQL requests that supports the middleware and afterware to modify the request and response.

By default, apollo-fetch uses isomorphic-fetch and provides the option of using a custom fetch function.

In addition, apollo-fetch supports passing a context to the server and receiving a context. This context can be used by the middleware and afterware.

Usage

Simple GraphQL query

import { createApolloFetch } from 'apollo-fetch'

const uri = 'example.com/graphql';

const query = `
  query sampleQuery(id: ID!) {
    sample(id: $id) {
      id,
      name
    }
  }
`

createApolloFetch({uri})({query})
.then((result) => {
  // GraphQL data, errors, and extensions plus context from the server
  const {data, error, extensions context} = result;
})
.catch((error) => {
  //respond to a network error
})

Simple GraphQL mutation with authentication middleware

import { createApolloFetch } from 'apollo-fetch'

const uri = 'example.com/graphql';

const query = `
  query sampleMutation(id: ID!) {
    addSample(id: $id) {
      id,
      name
    }
  }
`

const apolloFetch = createApolloFetch({uri});

apolloFetch.use({applyMiddleware: ({request, options}, next) => {
  if (!options.headers) {
    options.headers = {};  // Create the headers object if needed.
  }
  options.headers['authorization'] = 'created token';

  next();
}});

apolloFetch({query})
.then((result) => {
  // GraphQL data, errors, and extensions plus context from the server
  const {data, error, extensions context} = result;
})
.catch((error) => {
  //respond to a network error
})

Simple GraphQL mutation with authentication middleware

import { createApolloFetch } from 'apollo-fetch'

const uri = 'example.com/graphql';

const query = `
  query sampleMutation(id: ID!) {
    addSample(id: $id) {
      id,
      name
    }
  }
`

const apolloFetch = createApolloFetch({uri});

apolloFetch.use([{
  applyMiddleware: ({ options }, next) => {
    if (!options.headers) {
      options.headers = {};  // Create the headers object if needed.
    }
    options.headers['authorization'] = 'created token';

    next();
  }
});

apolloFetch({query})
.then((result) => {
  // GraphQL data, errors, and extensions plus context from the server
  const {data, error, extensions context} = result;
})
.catch((error) => {
  //respond to a network error
})

Afterware to check the response status and logout on a 401

import { createApolloFetch } from 'apollo-fetch'

const uri = 'example.com/graphql';

const apolloFetch = createApolloFetch({uri});

apolloFetch.useAfter({
  applyAfterware: ({ response }, next) => {
    if (response.status === 401) {
      logout();
    }
    next();
  }
});

apolloFetch({query})
.then((result) => {
  // GraphQL data, errors, and extensions plus context from the server
  const {data, error, extensions context} = result;
})
.catch((error) => {
  //respond to a network error
})

Middleware and Afterware can be chained together in any order:

const apolloFetch = createApolloFetch();
apolloFetch.use([exampleWare1])
  .use([exampleWare2])
  .useAfter([exampleWare3])
  .useAfter([exampleWare4])
  .use([exampleWare5]);

API

createApolloFetch is a factory for ApolloFetch, a fetch with middleware and afterware capabilities.

createApolloFetch(options: FetchOptions): ApolloFetch

FetchOptions {
  uri?: string;
  customFetch?: (request: RequestInfo, init: RequestInit) => Promise<Response>;
}
/* defaults:
 * uri = '/graphql'
 * customFetch = fetch from isomorphic-fetch
 */

ApolloFetch, a fetch function with middleware and afterware capabilities.

ApolloFetch {
  (operation: GraphQLRequest): Promise<FetchResult>;
  use: (middlewares: MiddlewareInterface[]) => ApolloFetch;
  useAfter: (afterwares: AfterwareInterface[]) => ApolloFetch;
}

GraphQLRequest is the argument to an ApolloFetch call

GraphQLRequest {
  query?: string;
  variables?: object;
  operationName?: string;
  context?: object;
}

FetchResult is the return value of an ApolloFetch call

FetchResult {
  data: any;
  errors?: any;
  extensions?: any;
  context?: object;
}

Middleware used by ApolloFetch

MiddlewareInterface {
  applyMiddleware(request: RequestAndOptions, next: Function): void;
}

RequestAndOptions {
  request: GraphQLRequest;
  options: RequestInit;
}

Afterware used by ApolloFetch

AfterwareInterface {
  applyAfterware(response: ResponseAndOptions, next: Function): any;
}

ResponseAndOptions {
  response: ParsedResponse;
  options: RequestInit;
}

ParsedResponse adds raw, the body from the .text() call on the fetch result, and parsed, the parsed JSON from raw, onto the regular Response from the fetch call.

ParsedResponse extends Response {
  raw: string;
  parsed?: any;
}