Skip to content

API Documentation / @pinia/colada / UseQueryEntryExtensions

Interface: UseQueryEntryExtensions<TResult, TError, TDataInitial>

Allows defining extensions to the query entry that are returned by useQuery().

Type Parameters

TResult

TResult

TError

TError

TDataInitial

TDataInitial extends TResult | undefined = TResult | undefined

Properties

isDelaying

ts
isDelaying: ShallowRef<boolean>;

Returns whether the query is currently delaying its asyncStatus from becoming 'loading'. Requires the PiniaColadaDelay plugin.

Released under the MIT License.