this.queryField.valueChanges.pipe(
filter(string => string.length > 0),
debounceTime(200),
switchMap(queryField =>
this._searchService.search(queryField)
)).subscribe((res: ItemResponse) => this.results = res._embedded.articles);
Last active
December 25, 2018 15:30
-
-
Save ahmed-bhs/4f0c1536384fc72a2f683f6bcb16d6f3 to your computer and use it in GitHub Desktop.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment