kibana/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.searchsource.fetch_.md
Lukas Olson d7b1cbbed5
[data.search.searchSource] Add fetch$ observable for partial results (#89211)
* [data.search.searchSource] Add fetch$ observable for partial results

* Fix mocks & add tests

* Update docs

* Update docs

* Review feedback
2021-01-29 10:01:35 -07:00

801 B

Home > kibana-plugin-plugins-data-public > SearchSource > fetch$

SearchSource.fetch$() method

Fetch this source from Elasticsearch, returning an observable over the response(s)

Signature:

fetch$(options?: ISearchOptions): import("rxjs").Observable<import("elasticsearch").SearchResponse<any>>;

Parameters

Parameter Type Description
options ISearchOptions

Returns:

import("rxjs").Observable<import("elasticsearch").SearchResponse<any>>