Skip to content

API Documentation / @pinia/colada / UseInfiniteQueryOptions

Interface: UseInfiniteQueryOptions<TResult, TError, TDataInitial, TPages>

Experimental

Options for useInfiniteQuery.

See https://github.com/posva/pinia-colada/issues/178

Extends

  • Omit<UseQueryOptions<TResult, TError, TDataInitial>, "query" | "initialData" | "placeholderData">

Type Parameters

TResult

TResult

TError

TError

TDataInitial

TDataInitial extends TResult | undefined = TResult | undefined

TPages

TPages = unknown

Properties

autoRefetch?

ts
optional autoRefetch: MaybeRefOrGetter<boolean>;

Experimental

Whether to enable auto refresh by default.

Default

ts
false

Inherited from

ts
Omit.autoRefetch

delay?

ts
optional delay: number | false;

Experimental

Delay in milliseconds to wait before letting the asyncStatus become 'loading'. Set to false or 0 to disable. Requires the PiniaColadaDelay plugin.

Default

ts
200

Inherited from

ts
Omit.delay

enabled?

ts
optional enabled: MaybeRefOrGetter<boolean>;

Experimental

Whether the query should be enabled or not. If false, the query will not be executed until refetch() or refresh() is called. If it becomes true, the query will be refreshed.

Inherited from

ts
Omit.enabled

gcTime?

ts
optional gcTime: number | false;

Experimental

Time in ms after which, once the data is no longer being used, it will be garbage collected to free resources. Set to false to disable garbage collection.

Default

ts
300_000 (5 minutes)

Inherited from

ts
Omit.gcTime

initialPage

ts
initialPage: TPages | () => TPages;

Experimental


key

ts
key: MaybeRefOrGetter<readonly (EntryNodeKey | _ObjectFlat)[]>;

Experimental

The key used to identify the query. Array of primitives without reactive values or a reactive array or getter. It should be treaded as an array of dependencies of your queries, e.g. if you use the route.params.id property, it should also be part of the key:

ts
import { useRoute } from 'vue-router'
import { useQuery } from '@pinia/colada'

const route = useRoute()
const { data } = useQuery({
  // pass a getter function (or computed, ref, etc.) to ensure reactivity
  key: () => ['user', route.params.id],
  query: () => fetchUser(route.params.id),
})

Inherited from

ts
Omit.key

merge()

ts
merge: (result, current) => NoInfer<TPages>;

Experimental

Parameters

result

NoInfer<TPages>

current

NoInfer<TResult>

Returns

NoInfer<TPages>


query()

ts
query: (pages, context) => Promise<TResult>;

Experimental

The function that will be called to fetch the data. It must be async.

Parameters

pages

NoInfer<TPages>

context

UseQueryFnContext

Returns

Promise<TResult>


refetchOnMount?

ts
optional refetchOnMount: MaybeRefOrGetter<RefetchOnControl>;

Experimental

Whether to refetch the query when the component is mounted.

Default

ts
true

Inherited from

ts
Omit.refetchOnMount

refetchOnReconnect?

ts
optional refetchOnReconnect: MaybeRefOrGetter<RefetchOnControl>;

Experimental

Whether to refetch the query when the network reconnects.

Default

ts
true

Inherited from

ts
Omit.refetchOnReconnect

refetchOnWindowFocus?

ts
optional refetchOnWindowFocus: MaybeRefOrGetter<RefetchOnControl>;

Experimental

Whether to refetch the query when the window regains focus.

Default

ts
true

Inherited from

ts
Omit.refetchOnWindowFocus

retry?

ts
optional retry: 
  | number
  | RetryOptions
  | (failureCount, error) => boolean;

Experimental

Options for the retries of this query added by @pinia/colada-plugin-retry.

Inherited from

ts
Omit.retry

staleTime?

ts
optional staleTime: number;

Experimental

Time in ms after which the data is considered stale and will be refreshed on next read.

Default

ts
5000 (5 seconds)

Inherited from

ts
Omit.staleTime

Released under the MIT License.