Skip to content

API Documentation / @pinia/colada / UseMutationReturn

Interface: UseMutationReturn<TResult, TVars, TError>

Type Parameters

TResult

TResult

TVars

TVars

TError

TError

Properties

asyncStatus

ts
asyncStatus: ShallowRef<AsyncStatus>;

Status of the mutation. Becomes 'loading' while the mutation is being fetched, is 'idle' otherwise.


data

ts
data: ShallowRef<undefined | TResult>;

The result of the mutation. undefined if the mutation has not been called yet.


error

ts
error: ShallowRef<null | TError>;

The error of the mutation. null if the mutation has not been called yet or if it was successful.


isLoading

ts
isLoading: ComputedRef<boolean>;

Whether the mutation is currently executing.


key?

ts
optional key: 
  | readonly (EntryNodeKey | _ObjectFlat)[]
  | (vars) => readonly (EntryNodeKey | _ObjectFlat)[];

mutate()

ts
mutate: (...args) => void;

Calls the mutation without returning a promise to avoid unhandled promise rejections.

Parameters

args

...unknown extends TVars ? [] : [TVars]

parameters to pass to the mutation

Returns

void


mutateAsync

ts
mutateAsync: unknown extends TVars ? () => Promise<TResult> : (vars) => Promise<TResult>;

Calls the mutation and returns a promise with the result.

Param

parameters to pass to the mutation


reset()

ts
reset: () => void;

Resets the state of the mutation to its initial state.

Returns

void


state

ts
state: ComputedRef<DataState<TResult, TError>>;

The combined state of the mutation. Contains its data, error, and status. It enables type narrowing based on the ['status'].


status

ts
status: ShallowRef<DataStateStatus>;

The status of the mutation.

See

DataStateStatus


variables

ts
variables: ShallowRef<undefined | TVars>;

The variables passed to the mutation. They are initially undefined and change every time the mutation is called.

Released under the MIT License.