Skip to content

Instantly share code, notes, and snippets.

@chsami
Created February 8, 2019 12:10
Show Gist options
  • Save chsami/ffdfd306cda66f2f4e94aaae3e74c5ab to your computer and use it in GitHub Desktop.
Save chsami/ffdfd306cda66f2f4e94aaae3e74c5ab to your computer and use it in GitHub Desktop.
constructor(apollo: Apollo, httpLink: HttpLink, oAuthService: OAuthService) {
apollo.create({
link: httpLink.create({
uri: environment.graphqlurl,
headers: new HttpHeaders({
authorization: oAuthService.getAccessToken()
}),
withCredentials: true
}),
cache
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment