Advertisement
Guest User

Untitled

a guest
Mar 26th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. ngOnInit(): void {
  2. this.querySubscription = this.apollo.watchQuery<AuthorsQuery>({
  3. query: getAuthorsQuery
  4. })
  5. .valueChanges
  6. .subscribe(({ data }) => {
  7. this.authors = data.authors;
  8. });
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement