Skip to main content
Version: 11.x

Interface: UseTRPCSuspenseQueryOptions<TOutput, TData, TError>

Extends

Type Parameters

Type Parameter
TOutput
TData
TError

Properties

_defaulted?

optional _defaulted: boolean

Inherited from

DistributiveOmit._defaulted

Defined in

node_modules/.pnpm/@tanstack+query-core@5.54.1/node_modules/@tanstack/query-core/build/legacy/hydration-DhBHwtrO.d.ts:590


_optimisticResults?

optional _optimisticResults: "optimistic" | "isRestoring"

Inherited from

DistributiveOmit._optimisticResults

Defined in

node_modules/.pnpm/@tanstack+query-core@5.54.1/node_modules/@tanstack/query-core/build/legacy/hydration-DhBHwtrO.d.ts:701


behavior?

optional behavior: QueryBehavior<TOutput, TError, TOutput, any>

Inherited from

DistributiveOmit.behavior

Defined in

node_modules/.pnpm/@tanstack+query-core@5.54.1/node_modules/@tanstack/query-core/build/legacy/hydration-DhBHwtrO.d.ts:583


gcTime?

optional gcTime: 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.

Inherited from

DistributiveOmit.gcTime

Defined in

node_modules/.pnpm/@tanstack+query-core@5.54.1/node_modules/@tanstack/query-core/build/legacy/hydration-DhBHwtrO.d.ts:575


initialData?

optional initialData: TOutput | InitialDataFunction<TOutput>

Inherited from

DistributiveOmit.initialData

Defined in

node_modules/.pnpm/@tanstack+query-core@5.54.1/node_modules/@tanstack/query-core/build/legacy/hydration-DhBHwtrO.d.ts:581


initialDataUpdatedAt?

optional initialDataUpdatedAt: number | () => undefined | number

Inherited from

DistributiveOmit.initialDataUpdatedAt

Defined in

node_modules/.pnpm/@tanstack+query-core@5.54.1/node_modules/@tanstack/query-core/build/legacy/hydration-DhBHwtrO.d.ts:582


maxPages?

optional maxPages: number

Maximum number of pages to store in the data of an infinite query.

Inherited from

DistributiveOmit.maxPages

Defined in

node_modules/.pnpm/@tanstack+query-core@5.54.1/node_modules/@tanstack/query-core/build/legacy/hydration-DhBHwtrO.d.ts:599


meta?

optional meta: Record<string, unknown>

Additional payload to be stored on each query. Use this property to pass information that can be used in other places.

Inherited from

DistributiveOmit.meta

Defined in

node_modules/.pnpm/@tanstack+query-core@5.54.1/node_modules/@tanstack/query-core/build/legacy/hydration-DhBHwtrO.d.ts:595


networkMode?

optional networkMode: NetworkMode

Inherited from

DistributiveOmit.networkMode

Defined in

node_modules/.pnpm/@tanstack+query-core@5.54.1/node_modules/@tanstack/query-core/build/legacy/hydration-DhBHwtrO.d.ts:568


notifyOnChangeProps?

optional notifyOnChangeProps: 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.

Inherited from

DistributiveOmit.notifyOnChangeProps

Defined in

node_modules/.pnpm/@tanstack+query-core@5.54.1/node_modules/@tanstack/query-core/build/legacy/hydration-DhBHwtrO.d.ts:678


persister()?

optional persister: (queryFn, context, query) => NoInfer<TOutput> | Promise<NoInfer<TOutput>>

Parameters

ParameterTypeDescription
queryFnQueryFunction<NoInfer<TOutput>, any, never>-
contextobject-
context.direction?unknownDeprecated if you want access to the direction, you can add it to the pageParam
context.metaundefined | Record<string, unknown>-
context.pageParam?unknown-
context.queryKeyany-
context.signalAbortSignal-
queryQuery<unknown, Error, unknown, QueryKey>-

Returns

NoInfer<TOutput> | Promise<NoInfer<TOutput>>

Inherited from

DistributiveOmit.persister

Defined in

node_modules/.pnpm/@tanstack+query-core@5.54.1/node_modules/@tanstack/query-core/build/legacy/hydration-DhBHwtrO.d.ts:577


queryFn?

optional queryFn: typeof skipToken | QueryFunction<TOutput, any, never>

Inherited from

DistributiveOmit.queryFn

Defined in

node_modules/.pnpm/@tanstack+query-core@5.54.1/node_modules/@tanstack/query-core/build/legacy/hydration-DhBHwtrO.d.ts:576


queryHash?

optional queryHash: string

Inherited from

DistributiveOmit.queryHash

Defined in

node_modules/.pnpm/@tanstack+query-core@5.54.1/node_modules/@tanstack/query-core/build/legacy/hydration-DhBHwtrO.d.ts:578


queryKeyHashFn?

optional queryKeyHashFn: QueryKeyHashFunction<any>

Inherited from

DistributiveOmit.queryKeyHashFn

Defined in

node_modules/.pnpm/@tanstack+query-core@5.54.1/node_modules/@tanstack/query-core/build/legacy/hydration-DhBHwtrO.d.ts:580


refetchInterval?

optional refetchInterval: 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.

Inherited from

DistributiveOmit.refetchInterval

Defined in

node_modules/.pnpm/@tanstack+query-core@5.54.1/node_modules/@tanstack/query-core/build/legacy/hydration-DhBHwtrO.d.ts:636


refetchIntervalInBackground?

optional refetchIntervalInBackground: boolean

If set to true, the query will continue to refetch while their tab/window is in the background. Defaults to false.

Inherited from

DistributiveOmit.refetchIntervalInBackground

Defined in

node_modules/.pnpm/@tanstack+query-core@5.54.1/node_modules/@tanstack/query-core/build/legacy/hydration-DhBHwtrO.d.ts:641


refetchOnMount?

optional refetchOnMount: 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.

Inherited from

DistributiveOmit.refetchOnMount

Defined in

node_modules/.pnpm/@tanstack+query-core@5.54.1/node_modules/@tanstack/query-core/build/legacy/hydration-DhBHwtrO.d.ts:665


refetchOnReconnect?

optional refetchOnReconnect: 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)

Inherited from

DistributiveOmit.refetchOnReconnect

Defined in

node_modules/.pnpm/@tanstack+query-core@5.54.1/node_modules/@tanstack/query-core/build/legacy/hydration-DhBHwtrO.d.ts:657


refetchOnWindowFocus?

optional refetchOnWindowFocus: 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.

Inherited from

DistributiveOmit.refetchOnWindowFocus

Defined in

node_modules/.pnpm/@tanstack+query-core@5.54.1/node_modules/@tanstack/query-core/build/legacy/hydration-DhBHwtrO.d.ts:649


retry?

optional retry: 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.

Inherited from

DistributiveOmit.retry

Defined in

node_modules/.pnpm/@tanstack+query-core@5.54.1/node_modules/@tanstack/query-core/build/legacy/hydration-DhBHwtrO.d.ts:566


retryDelay?

optional retryDelay: RetryDelayValue<TError>

Inherited from

DistributiveOmit.retryDelay

Defined in

node_modules/.pnpm/@tanstack+query-core@5.54.1/node_modules/@tanstack/query-core/build/legacy/hydration-DhBHwtrO.d.ts:567


retryOnMount?

optional retryOnMount: boolean

If set to false, the query will not be retried on mount if it contains an error. Defaults to true.

Inherited from

DistributiveOmit.retryOnMount

Defined in

node_modules/.pnpm/@tanstack+query-core@5.54.1/node_modules/@tanstack/query-core/build/legacy/hydration-DhBHwtrO.d.ts:670


select()?

optional select: (data) => TData

This option can be used to transform or select a part of the data returned by the query function.

Parameters

ParameterType
dataTOutput

Returns

TData

Inherited from

DistributiveOmit.select

Defined in

node_modules/.pnpm/@tanstack+query-core@5.54.1/node_modules/@tanstack/query-core/build/legacy/hydration-DhBHwtrO.d.ts:690


staleTime?

optional staleTime: StaleTime<TOutput, TError, TOutput, 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.

Inherited from

DistributiveOmit.staleTime

Defined in

node_modules/.pnpm/@tanstack+query-core@5.54.1/node_modules/@tanstack/query-core/build/legacy/hydration-DhBHwtrO.d.ts:630


structuralSharing?

optional structuralSharing: 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.

Inherited from

DistributiveOmit.structuralSharing

Defined in

node_modules/.pnpm/@tanstack+query-core@5.54.1/node_modules/@tanstack/query-core/build/legacy/hydration-DhBHwtrO.d.ts:589


trpc?

optional trpc: TRPCReactRequestOptions

tRPC-related options

Inherited from

TRPCUseQueryBaseOptions.trpc

Defined in

packages/react-query/src/shared/hooks/types.ts:57