Skip to content

API Documentation / @pinia/colada / UseQueryEntry

Interface: UseQueryEntry<TResult, TError, TDataInitial>

A query entry in the cache.

Type Parameters

TResult

TResult = unknown

TError

TError = unknown

TDataInitial

TDataInitial extends TResult | undefined = TResult | undefined

Properties

active

ts
readonly active: boolean;

Whether the query is currently being used by a Component or EffectScope (e.g. a store).


asyncStatus

ts
asyncStatus: ShallowRef<AsyncStatus>;

The status of the query.


deps

ts
deps: Set<EffectScope | ComponentInternalInstance>;

Components and effects scopes that use this query entry.


ext

ts
ext: UseQueryEntryExtensions<TResult, TError, TDataInitial>;

Extensions to the query entry added by plugins.


gcTimeout

ts
gcTimeout: undefined | Timeout;

Timeout id that scheduled a garbage collection. It is set here to clear it when the entry is used by a different component


key

ts
key: EntryNodeKey[];

The serialized key associated with this query entry.


options

ts
options: 
  | null
| UseQueryOptionsWithDefaults<TResult, TError, TDataInitial>;

Options used to create the query. They can be null during hydration but are needed for fetching. This is why store.ensure() sets this property. Note these options might be shared by multiple query entries when the key is dynamic and that's why some methods like fetch receive the options as an argument.


pending

ts
pending: 
  | null
  | {
  abortController: AbortController;
  refreshCall: Promise<DataState<TResult, TError, TDataInitial>>;
  when: number;
};

The current pending request.

Type declaration

null

{ abortController: AbortController; refreshCall: Promise<DataState<TResult, TError, TDataInitial>>; when: number; }

abortController

ts
abortController: AbortController;

The abort controller used to cancel the request and which signal is passed to the query function.

refreshCall

ts
refreshCall: Promise<DataState<TResult, TError, TDataInitial>>;

The promise created by queryCache.fetch that is currently pending.

when

ts
when: number;

When was this pending object created.


placeholderData

ts
placeholderData: undefined | null | TResult | TDataInitial;

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).


stale

ts
readonly stale: boolean;

Whether the data is stale or not, requires options.staleTime to be set.


state

ts
state: ShallowRef<DataState<TResult, TError, TDataInitial>>;

The state of the query. Contains the data, error and status.


when

ts
when: number;

When was this data set in the entry for the last time in ms. It can also be 0 if the entry has been invalidated.

Released under the MIT License.