Skip to content

Instantly share code, notes, and snippets.

@rutvikbhatt9
Created January 30, 2023 18:12
Show Gist options
  • Save rutvikbhatt9/5da10cc03b414165fe117aa490b3d902 to your computer and use it in GitHub Desktop.
Save rutvikbhatt9/5da10cc03b414165fe117aa490b3d902 to your computer and use it in GitHub Desktop.
import { ApolloClient, ApolloLink, InMemoryCache } from "@apollo/client";
const link = ApolloLink.from([retryLink, requestLink, error, uploadLink]);
const cache = new InMemoryCache();
const client = new ApolloClient({
link,
cache,
});
export default client;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment