Skip to content

Instantly share code, notes, and snippets.

@kamilkisiela
Last active August 14, 2018 12:11
Show Gist options
  • Save kamilkisiela/9261bf15314d0054dadfc52382349769 to your computer and use it in GitHub Desktop.
Save kamilkisiela/9261bf15314d0054dadfc52382349769 to your computer and use it in GitHub Desktop.
DOPE
import { FeedGQL } from './generated/graphql';
@Component({...})
export class FeedComponent {
constructor(private feedGQL: FeedGQL) {}
ngOnInit() {
this.feedGQL.valueChanges.subscribe(result => {
console.log(result.data);
})
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment