Skip to content

Instantly share code, notes, and snippets.

@peggyrayzis
Created February 15, 2018 18:41
Show Gist options
  • Save peggyrayzis/75e459d0488ec57620ae6e4761932316 to your computer and use it in GitHub Desktop.
Save peggyrayzis/75e459d0488ec57620ae6e4761932316 to your computer and use it in GitHub Desktop.
import { ApolloClient } from 'apollo-client';
import { HttpLink, InMemoryCache, ApolloLink } from 'apollo-boost';
const client = new ApolloClient({
link: ApolloLink.from([ myCustomLink, new HttpLink() ]),
cache: new InMemoryCache()
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment