Defined in: preact-query/src/types.ts:46
The options shared by useQuery and useSuspenseQuery. Extends QueryObserverOptions from @tanstack/query-core with the preact-query-specific subscribed option.
QueryObserverOptions<TQueryFnData, TError, TData, TQueryData, TQueryKey>
TQueryFnData = unknown
The type your queryFn resolves to.
TError = DefaultError
The type of errors your queryFn may throw.
TData = TQueryFnData
The type data ends up as after select runs. Defaults to TQueryFnData when no select is used.
TQueryData = TQueryFnData
The type of the data actually held in the query cache — the input to select and placeholderData. Defaults to, and is usually the same as, TQueryFnData.
TQueryKey extends QueryKey = QueryKey
The type of your queryKey.
optional subscribed: boolean;Defined in: preact-query/src/types.ts:64
Set this to false to unsubscribe this observer from updates to the query cache.
true