Skip to content

API Documentation / @pinia/colada / UseQueryOptions

Interface: UseQueryOptions<TResult, TError, TDataInitial>

Options for useQuery(). Can be extended by plugins.

Example

ts
// use-query-plugin.d.ts
export {} // needed
declare module '@pinia/colada' {
  interface UseQueryOptions {
    // Whether to refresh the data when the component is mounted.
    refreshOnMount?: boolean
  }
}

Extends

Type Parameters

TResult

TResult = unknown

TError

TError = ErrorDefault

TDataInitial

TDataInitial extends TResult | undefined = TResult | undefined

Properties

autoRefetch?

ts
optional autoRefetch: MaybeRefOrGetter<boolean>;

Whether to enable auto refresh by default.

Default

ts
false

Inherited from

PiniaColadaAutoRefetchOptions.autoRefetch


delay?

ts
optional delay: number | false;

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

enabled?

ts
optional enabled: MaybeRefOrGetter<boolean>;

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
Pick.enabled

gcTime?

ts
optional gcTime: number | false;

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
Pick.gcTime

initialData()?

ts
optional initialData: () => TDataInitial;

The data which is initially set to the query while the query is loading for the first time. Note: unlike with placeholderData, setting the initial data changes the state of the query (it will be set to success).

Returns

TDataInitial


key

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

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),
})

placeholderData?

ts
optional placeholderData: 
  | NoInfer<TDataInitial>
  | NoInfer<TResult>
| <T>(previousData) => undefined | NoInfer<TDataInitial> | NoInfer<TResult>;

A placeholder data that is initially shown while the query is loading for the first time. This will also show the status as success until the query finishes loading (no matter the outcome of the query). Note: unlike with initialData, the placeholder does not change the cache state.


query()

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

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

Parameters

context

UseQueryFnContext

Returns

Promise<TResult>


refetchOnMount?

ts
optional refetchOnMount: MaybeRefOrGetter<RefetchOnControl>;

Whether to refetch the query when the component is mounted.

Default

ts
true

Inherited from

ts
Pick.refetchOnMount

refetchOnReconnect?

ts
optional refetchOnReconnect: MaybeRefOrGetter<RefetchOnControl>;

Whether to refetch the query when the network reconnects.

Default

ts
true

Inherited from

ts
Pick.refetchOnReconnect

refetchOnWindowFocus?

ts
optional refetchOnWindowFocus: MaybeRefOrGetter<RefetchOnControl>;

Whether to refetch the query when the window regains focus.

Default

ts
true

Inherited from

ts
Pick.refetchOnWindowFocus

retry?

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

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


staleTime?

ts
optional staleTime: number;

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
Pick.staleTime

Released under the MIT License.