(
fetchOptions?: ObserverFetchOptions
)
| 352 | } |
| 353 | |
| 354 | protected fetch( |
| 355 | fetchOptions?: ObserverFetchOptions |
| 356 | ): Promise<QueryObserverResult<TData, TError>> { |
| 357 | return this.executeFetch(fetchOptions).then(() => { |
| 358 | this.updateResult() |
| 359 | return this.currentResult |
| 360 | }) |
| 361 | } |
| 362 | |
| 363 | private executeFetch( |
| 364 | fetchOptions?: ObserverFetchOptions |
no test coverage detected