Skip to content

Instantly share code, notes, and snippets.

@angelnikolov
Last active May 6, 2018 09:53
Show Gist options
  • Save angelnikolov/371ca901b5d4e79373e1fcff9fc98072 to your computer and use it in GitHub Desktop.
Save angelnikolov/371ca901b5d4e79373e1fcff9fc98072 to your computer and use it in GitHub Desktop.
@Cacheable({
cacheBusterObserver: productNotifier
})
getProducts(take?: number, skip?: number) {
return this.http.get(
`${environment.api}/products/latest?take=${take}&skip=${skip}`
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment