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
readonly active: boolean;
Whether the query is currently being used by a Component or EffectScope (e.g. a store).
asyncStatus
asyncStatus: ShallowRef<AsyncStatus>;
The status of the query.
deps
deps: Set<EffectScope | ComponentInternalInstance>;
Components and effects scopes that use this query entry.
ext
ext: UseQueryEntryExtensions<TResult, TError, TDataInitial>;
Extensions to the query entry added by plugins.
gcTimeout
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
key: EntryNodeKey[];
The serialized key associated with this query entry.
options
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
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
abortController: AbortController;
The abort controller used to cancel the request and which signal
is passed to the query function.
refreshCall
refreshCall: Promise<DataState<TResult, TError, TDataInitial>>;
The promise created by queryCache.fetch
that is currently pending.
when
when: number;
When was this pending
object created.
placeholderData
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
readonly stale: boolean;
Whether the data is stale or not, requires options.staleTime
to be set.
state
state: ShallowRef<DataState<TResult, TError, TDataInitial>>;
The state of the query. Contains the data, error and status.
when
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.