Interface: UseTRPCQueryOptions<TOutput, TData, TError, TQueryOptsData>
Extends
DistributiveOmit<UseBaseQueryOptions<TOutput,TError,TData,TQueryOptsData,any>,"queryKey">.TRPCUseQueryBaseOptions
Type parameters
| Parameter | Default |
|---|---|
TOutput | - |
TData | - |
TError | - |
TQueryOptsData | TOutput |
Properties
_defaulted
optional_defaulted:boolean
Source
node_modules/.pnpm/@tanstack+query-core@5.45.0/node_modules/@tanstack/query-core/build/legacy/hydration-BZ2M_xzi.d.ts:588
Inherited from
DistributiveOmit._defaulted
_optimisticResults
optional_optimisticResults:"optimistic"|"isRestoring"
Source
node_modules/.pnpm/@tanstack+query-core@5.45.0/node_modules/@tanstack/query-core/build/legacy/hydration-BZ2M_xzi.d.ts:698
Inherited from
DistributiveOmit._optimisticResults
behavior
optionalbehavior:QueryBehavior<TOutput,TError,TQueryOptsData,any>
Source
node_modules/.pnpm/@tanstack+query-core@5.45.0/node_modules/@tanstack/query-core/build/legacy/hydration-BZ2M_xzi.d.ts:581
Inherited from
DistributiveOmit.behavior
enabled
optionalenabled:boolean
Set this to false to disable automatic refetching when the query mounts or changes query keys.
To refetch the query, use the refetch method returned from the useQuery instance.
Defaults to true.
Source
node_modules/.pnpm/@tanstack+query-core@5.45.0/node_modules/@tanstack/query-core/build/legacy/hydration-BZ2M_xzi.d.ts:621
Inherited from
DistributiveOmit.enabled
gcTime
optionalgcTime:number
The time in milliseconds that unused/inactive cache data remains in memory.
When a query's cache becomes unused or inactive, that cache data will be garbage collected after this duration.
When different garbage collection times are specified, the longest one will be used.
Setting it to Infinity will disable garbage collection.
Source
node_modules/.pnpm/@tanstack+query-core@5.45.0/node_modules/@tanstack/query-core/build/legacy/hydration-BZ2M_xzi.d.ts:573
Inherited from
DistributiveOmit.gcTime
initialData
optionalinitialData:TQueryOptsData|InitialDataFunction<TQueryOptsData>
Source
node_modules/.pnpm/@tanstack+query-core@5.45.0/node_modules/@tanstack/query-core/build/legacy/hydration-BZ2M_xzi.d.ts:579
Inherited from
DistributiveOmit.initialData
initialDataUpdatedAt
optionalinitialDataUpdatedAt:number| () =>undefined|number
Source
node_modules/.pnpm/@tanstack+query-core@5.45.0/node_modules/@tanstack/query-core/build/legacy/hydration-BZ2M_xzi.d.ts:580
Inherited from
DistributiveOmit.initialDataUpdatedAt
maxPages
optionalmaxPages:number
Maximum number of pages to store in the data of an infinite query.
Source
node_modules/.pnpm/@tanstack+query-core@5.45.0/node_modules/@tanstack/query-core/build/legacy/hydration-BZ2M_xzi.d.ts:597
Inherited from
DistributiveOmit.maxPages
meta
optionalmeta:Record<string,unknown>
Additional payload to be stored on each query. Use this property to pass information that can be used in other places.
Source
node_modules/.pnpm/@tanstack+query-core@5.45.0/node_modules/@tanstack/query-core/build/legacy/hydration-BZ2M_xzi.d.ts:593
Inherited from
DistributiveOmit.meta
networkMode
optionalnetworkMode:NetworkMode
Source
node_modules/.pnpm/@tanstack+query-core@5.45.0/node_modules/@tanstack/query-core/build/legacy/hydration-BZ2M_xzi.d.ts:566
Inherited from
DistributiveOmit.networkMode
notifyOnChangeProps
optionalnotifyOnChangeProps:NotifyOnChangeProps
If set, the component will only re-render if any of the listed properties change.
When set to ['data', 'error'], the component will only re-render when the data or error properties change.
When set to 'all', the component will re-render whenever a query is updated.
When set to a function, the function will be executed to compute the list of properties.
By default, access to properties will be tracked, and the component will only re-render when one of the tracked properties change.
Source
node_modules/.pnpm/@tanstack+query-core@5.45.0/node_modules/@tanstack/query-core/build/legacy/hydration-BZ2M_xzi.d.ts:675
Inherited from
DistributiveOmit.notifyOnChangeProps
persister
optionalpersister: (queryFn,context,query) =>NoInfer<TOutput> |Promise<NoInfer<TOutput> >
Parameters
| Parameter | Type | Description |
|---|---|---|
queryFn | QueryFunction< NoInfer< TOutput >, any, never > | - |
context | object | - |
context.direction? | unknown | Deprecated if you want access to the direction, you can add it to the pageParam |
context.meta | undefined | Record< string, unknown > | - |
context.pageParam? | unknown | - |
context.queryKey | any | - |
context.signal | AbortSignal | - |
query | Query< unknown, Error, unknown, QueryKey > | - |
Returns
NoInfer< TOutput > | Promise< NoInfer< TOutput > >
Source
node_modules/.pnpm/@tanstack+query-core@5.45.0/node_modules/@tanstack/query-core/build/legacy/hydration-BZ2M_xzi.d.ts:575
Inherited from
DistributiveOmit.persister
placeholderData
optionalplaceholderData:NonFunctionGuard<TQueryOptsData> |PlaceholderDataFunction<NonFunctionGuard<TQueryOptsData>,TError,NonFunctionGuard<TQueryOptsData>,any>
If set, this value will be used as the placeholder data for this particular query observer while the query is still in the loading data and no initialData has been provided.
Source
node_modules/.pnpm/@tanstack+query-core@5.45.0/node_modules/@tanstack/query-core/build/legacy/hydration-BZ2M_xzi.d.ts:697
Inherited from
DistributiveOmit.placeholderData
queryFn
optionalqueryFn: typeofskipToken|QueryFunction<TOutput,any,never>
Source
node_modules/.pnpm/@tanstack+query-core@5.45.0/node_modules/@tanstack/query-core/build/legacy/hydration-BZ2M_xzi.d.ts:574
Inherited from
DistributiveOmit.queryFn
queryHash
optionalqueryHash:string
Source
node_modules/.pnpm/@tanstack+query-core@5.45.0/node_modules/@tanstack/query-core/build/legacy/hydration-BZ2M_xzi.d.ts:576
Inherited from
DistributiveOmit.queryHash
queryKeyHashFn
optionalqueryKeyHashFn:QueryKeyHashFunction<any>
Source
node_modules/.pnpm/@tanstack+query-core@5.45.0/node_modules/@tanstack/query-core/build/legacy/hydration-BZ2M_xzi.d.ts:578
Inherited from
DistributiveOmit.queryKeyHashFn
refetchInterval
optionalrefetchInterval:number|false| (query) =>undefined|number|false
If set to a number, the query will continuously refetch at this frequency in milliseconds.
If set to a function, the function will be executed with the latest data and query to compute a frequency
Defaults to false.
Source
node_modules/.pnpm/@tanstack+query-core@5.45.0/node_modules/@tanstack/query-core/build/legacy/hydration-BZ2M_xzi.d.ts:633
Inherited from
DistributiveOmit.refetchInterval
refetchIntervalInBackground
optionalrefetchIntervalInBackground:boolean
If set to true, the query will continue to refetch while their tab/window is in the background.
Defaults to false.
Source
node_modules/.pnpm/@tanstack+query-core@5.45.0/node_modules/@tanstack/query-core/build/legacy/hydration-BZ2M_xzi.d.ts:638
Inherited from
DistributiveOmit.refetchIntervalInBackground
refetchOnMount
optionalrefetchOnMount:boolean|"always"| (query) =>boolean|"always"
If set to true, the query will refetch on mount if the data is stale.
If set to false, will disable additional instances of a query to trigger background refetch.
If set to 'always', the query will always refetch on mount.
If set to a function, the function will be executed with the latest data and query to compute the value
Defaults to true.
Source
node_modules/.pnpm/@tanstack+query-core@5.45.0/node_modules/@tanstack/query-core/build/legacy/hydration-BZ2M_xzi.d.ts:662
Inherited from
DistributiveOmit.refetchOnMount
refetchOnReconnect
optionalrefetchOnReconnect:boolean|"always"| (query) =>boolean|"always"
If set to true, the query will refetch on reconnect if the data is stale.
If set to false, the query will not refetch on reconnect.
If set to 'always', the query will always refetch on reconnect.
If set to a function, the function will be executed with the latest data and query to compute the value.
Defaults to the value of networkOnline (true)
Source
node_modules/.pnpm/@tanstack+query-core@5.45.0/node_modules/@tanstack/query-core/build/legacy/hydration-BZ2M_xzi.d.ts:654
Inherited from
DistributiveOmit.refetchOnReconnect
refetchOnWindowFocus
optionalrefetchOnWindowFocus:boolean|"always"| (query) =>boolean|"always"
If set to true, the query will refetch on window focus if the data is stale.
If set to false, the query will not refetch on window focus.
If set to 'always', the query will always refetch on window focus.
If set to a function, the function will be executed with the latest data and query to compute the value.
Defaults to true.
Source
node_modules/.pnpm/@tanstack+query-core@5.45.0/node_modules/@tanstack/query-core/build/legacy/hydration-BZ2M_xzi.d.ts:646
Inherited from
DistributiveOmit.refetchOnWindowFocus
retry
optionalretry:RetryValue<TError>
If false, failed queries will not retry by default.
If true, failed queries will retry infinitely., failureCount: num
If set to an integer number, e.g. 3, failed queries will retry until the failed query count meets that number.
If set to a function (failureCount, error) => boolean failed queries will retry until the function returns false.
Source
node_modules/.pnpm/@tanstack+query-core@5.45.0/node_modules/@tanstack/query-core/build/legacy/hydration-BZ2M_xzi.d.ts:564
Inherited from
DistributiveOmit.retry
retryDelay
optionalretryDelay:RetryDelayValue<TError>
Source
node_modules/.pnpm/@tanstack+query-core@5.45.0/node_modules/@tanstack/query-core/build/legacy/hydration-BZ2M_xzi.d.ts:565
Inherited from
DistributiveOmit.retryDelay
retryOnMount
optionalretryOnMount:boolean
If set to false, the query will not be retried on mount if it contains an error.
Defaults to true.
Source
node_modules/.pnpm/@tanstack+query-core@5.45.0/node_modules/@tanstack/query-core/build/legacy/hydration-BZ2M_xzi.d.ts:667
Inherited from
DistributiveOmit.retryOnMount
select
optionalselect: (data) =>TData
This option can be used to transform or select a part of the data returned by the query function.
Parameters
| Parameter | Type |
|---|---|
data | TQueryOptsData |
Returns
TData
Source
node_modules/.pnpm/@tanstack+query-core@5.45.0/node_modules/@tanstack/query-core/build/legacy/hydration-BZ2M_xzi.d.ts:687
Inherited from
DistributiveOmit.select
staleTime
optionalstaleTime:StaleTime<TOutput,TError,TQueryOptsData,any>
The time in milliseconds after data is considered stale.
If set to Infinity, the data will never be considered stale.
If set to a function, the function will be executed with the query to compute a staleTime.
Source
node_modules/.pnpm/@tanstack+query-core@5.45.0/node_modules/@tanstack/query-core/build/legacy/hydration-BZ2M_xzi.d.ts:627
Inherited from
DistributiveOmit.staleTime
structuralSharing
optionalstructuralSharing:boolean| (oldData,newData) =>unknown
Set this to false to disable structural sharing 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 structural sharing logic.
Defaults to true.
Source
node_modules/.pnpm/@tanstack+query-core@5.45.0/node_modules/@tanstack/query-core/build/legacy/hydration-BZ2M_xzi.d.ts:587
Inherited from
DistributiveOmit.structuralSharing
suspense
optionalsuspense:boolean
If set to true, the query will suspend when status === 'pending'
and throw errors when status === 'error'.
Defaults to false.
Source
node_modules/.pnpm/@tanstack+query-core@5.45.0/node_modules/@tanstack/query-core/build/legacy/hydration-BZ2M_xzi.d.ts:693
Inherited from
DistributiveOmit.suspense
throwOnError
optionalthrowOnError:ThrowOnError<TOutput,TError,TQueryOptsData,any>
Whether errors should be thrown instead of setting the error property.
If set to true or suspense is true, all errors will be thrown to the error boundary.
If set to false and suspense is false, errors are returned as state.
If set to a function, it will be passed the error and the query, and it should return a boolean indicating whether to show the error in an error boundary (true) or return the error as state (false).
Defaults to false.
Source
node_modules/.pnpm/@tanstack+query-core@5.45.0/node_modules/@tanstack/query-core/build/legacy/hydration-BZ2M_xzi.d.ts:683
Inherited from
DistributiveOmit.throwOnError
trpc
optionaltrpc:TRPCReactRequestOptions
tRPC-related options
Source
packages/react-query/src/shared/hooks/types.ts:55
Inherited from
Generated using TypeDoc and typedoc-plugin-markdown