Defined in: packages/query-core/src/queriesObserver.ts:23
TCombinedResult = QueryObserverResult[]
optional combine: CombineFn<TCombinedResult>;Defined in: packages/query-core/src/queriesObserver.ts:34
A function that combines the array of QueryObserverResults (one per observed query) into a single value. The combined value is memoized and only recomputed when one of the underlying results, the query hashes, or the combine function itself changes.
Defaults to returning the array of QueryObserverResults unchanged.