JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 28026
  • Score
    100M100P100Q122386F
  • 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 client for GraphQL requests that supports middleware and afterware that modify requests and responses.

By default apollo-fetch uses isomorphic-fetch, but you have the option of using a custom fetch function.

Usage

Simple GraphQL query:

import { createApolloFetch } from 'apollo-fetch'

const uri = 'http://api.githunt.com/graphql';

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

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

Simple GraphQL mutation with authentication middleware. Middleware has access to the GraphQL query and the options passed to fetch.

import { createApolloFetch } from 'apollo-fetch'

const uri = 'http://api.githunt.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
  const { data, error, extensions } = result;
})
.catch(error => {
  //respond to a network error
})

Afterware to check the response status and logout on a 401. The afterware has access to the raw reponse always and parsed response when the data is proper JSON.

import { createApolloFetch } from 'apollo-fetch'

const uri = 'http://api.githunt.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 from the server
  const { data, error, extensions } = 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]);

apolloFetch is an alias for an empty call to createApolloFetch

import { apolloFetch } from `apollo-fetch`;

//fetches a query from /graphql
apolloFetch({ query }).then(...).catch(...)

API

createApolloFetch is a factory for ApolloFetch, a fetch function 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) to the fetch result, and parsed (the parsed JSON from raw) to the regular Response from the fetch call.

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

Errors returned from a call to ApolloFetch are normal errors that contain the parsed response, the raw response from .text(), and a possible parse error.

FetchError extends Error {
  response: ParsedResponse;
  raw: string;
  parseError?: Error;
}