Defined in: QueryClient.ts:62
The core InfiniteQueryObserverOptions, with Solid's reconcile option added.
TQueryFnData = unknown
The type of a single page, as your queryFn resolves it.
TError = DefaultError
The type of errors your queryFn may throw.
TData = TQueryFnData
The type data ends up as after select runs.
TQueryKey extends QueryKey = QueryKey
The type of your queryKey.
TPageParam = unknown
The type of the parameter passed to queryFn to fetch a given page.
optional reconcile: string | false | (oldData, newData) => TData;Defined in: QueryClient.ts:84
Set this to a reconciliation key to enable reconciliation between query results. Set this to false to disable reconciliation between query results. Set this to a function which accepts the old and new data and returns resolved data of the same type to implement custom reconciliation logic. Defaults reconciliation to false.