Defined in: preact-query/src/types.ts:164
The options accepted by useQuery. Same as UseBaseQueryOptions, minus suspense (which preact-query derives from which hook you call rather than exposing as an option).
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.
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.
trueOmitKeyof.subscribed