Skip to content

Instantly share code, notes, and snippets.

@epalaz
Created August 13, 2019 07:33
Show Gist options
  • Save epalaz/ce370c892baeb52b8b503956816be51c to your computer and use it in GitHub Desktop.
Save epalaz/ce370c892baeb52b8b503956816be51c to your computer and use it in GitHub Desktop.
Apollo Client
const apolloCache = new InMemoryCache()
const uploadLink = createUploadLink({
uri: 'http://localhost:4000', // Apollo Server is served from port 4000
headers: {
"keep-alive": "true"
}
})
const client = new ApolloClient({
cache: apolloCache,
link: uploadLink
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment