Skip to content

Instantly share code, notes, and snippets.

@kamilkisiela
Created August 20, 2018 21:42
Show Gist options
  • Save kamilkisiela/dc6f215ebc17a63e7f3661c32ff4ddbe to your computer and use it in GitHub Desktop.
Save kamilkisiela/dc6f215ebc17a63e7f3661c32ff4ddbe to your computer and use it in GitHub Desktop.
FeedComponent
import { Component } from '@angular/core';
import { FeedGQL } from './feed-gql.ts';
@Component({ … })
export class FeedComponent {
constructor(feedGQL: FeedGQL) {
feedGQL.watch()
.valueChanges
.subscribe(result => {
// ...
})
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment