Skip to content

API Documentation / @pinia/colada

@pinia/colada

Pinia Colada

Interfaces

InterfaceDescription
_DataState_BaseInternal base type for data state.
DataState_ErrorInternal base type for data state.
DataState_PendingInternal base type for data state.
DataState_SuccessInternal base type for data state.
PiniaColadaOptionsOptions for the Pinia Colada plugin.
PiniaColadaPluginA Pinia Colada plugin.
PiniaColadaPluginContextContext passed to a Pinia Colada plugin.
PiniaColadaQueryHooksPluginOptionsOptions for PiniaColadaQueryHooksPlugin.
TypesConfigAllows you to extend the default types of the library.
UseInfiniteQueryOptionsOptions for useInfiniteQuery.
UseMutationOptionsOptions to create a mutation.
UseMutationOptionsGlobalOptions for mutations that can be globally overridden.
UseMutationReturn-
UseQueryEntryA query entry in the cache.
UseQueryEntryExtensionsAllows defining extensions to the query entry that are returned by useQuery().
UseQueryEntryFilterFilter to get entries from the cache.
UseQueryOptionsOptions for useQuery(). Can be extended by plugins.
UseQueryOptionsGlobalOptions for queries that can be globally overridden.
UseQueryReturnReturn type of useQuery().

Type Aliases

Type AliasDescription
AsyncStatusThe status of an async operation tied to pinia colada e.g. queries and mutations. - idle: not loading - loading: currently loading
DataStatePossible states for data based on its status.
DataStateStatusThe status of data. - pending: initial state - error: has an error - success: has data
EntryKeyKey used to identify a query or a mutation. Always an array.
EntryNodeKeyKey type for nodes in the tree map. Differently from EntryKey, this type is serializable to JSON.
QueryCacheThe cache of the queries. It's the store returned by useQueryCache.
RefetchOnControlPossible values for refetchOnMount, refetchOnWindowFocus, and refetchOnReconnect. true refetches if data is stale (calles refresh()), false never refetches, 'always' always refetches.
UseQueryOptionsWithDefaults-

Variables

VariableDescription
PiniaColadaPlugin that installs the Query and Mutation plugins alongside some extra plugins.
useQueryCacheComposable to get the cache of the queries. As any other composable, it can be used inside the setup function of a component, within another composable, or in injectable contexts like stores and navigation guards.

Functions

FunctionDescription
defineMutationDefine a mutation with the given options. Similar to useMutation(options) but allows you to reuse the mutation in multiple places.
defineQueryDefine a query with the given options. Similar to useQuery(options) but allows you to reuse the query in multiple places. It only allow static values in options. If you need dynamic values, use the function version.
hydrateQueryCacheHydrates the query cache with the serialized cache. Used during SSR.
PiniaColadaQueryHooksPluginAllows to add global hooks to all queries: - onSuccess: called when a query is successful - onError: called when a query throws an error - onSettled: called when a query is settled (either successfully or with an error)
serializeQueryCacheSerializes the query cache to a compressed array. Used during SSR.
serializeTreeMapTransform a tree into a compressed array.
toCacheKeyCreates a QueryCache's caches key from an entry's UseQueryOptions#key.
useInfiniteQueryStore and merge paginated data into a single cache entry. Allows to handle infinite scrolling. This is an experimental API and is subject to change.
useMutationSetups a mutation.
useQueryEnsures and return a shared query state based on the key option.

Released under the MIT License.