Defined in: packages/query-core/src/types.ts:1335
The raw state stored on a Mutation instance. This is the underlying state that observer results (e.g. MutationObserverResult) are derived from.
TData = unknown
TError = DefaultError
TVariables = void
TOnMutateResult = unknown
context: TOnMutateResult | undefined;Defined in: packages/query-core/src/mutation.ts:40
The value returned by onMutate, if defined. Passed to onSuccess, onError and onSettled as the mutation's context.
data: TData | undefined;Defined in: packages/query-core/src/types.ts:1344
The last successfully resolved data for the mutation.
error: TError | null;Defined in: packages/query-core/src/types.ts:1353
The error object for the mutation, if an error was encountered.
failureCount: number;Defined in: packages/query-core/src/mutation.ts:53
The number of times the mutation function has failed for the current attempt.
failureReason: TError | null;Defined in: packages/query-core/src/mutation.ts:57
The reason the current attempt failed, as reported by the retryer.
isError: boolean;Defined in: packages/query-core/src/types.ts:1358
A boolean variable derived from status.
isIdle: boolean;Defined in: packages/query-core/src/types.ts:1363
A boolean variable derived from status.
isPaused: boolean;Defined in: packages/query-core/src/mutation.ts:62
Whether the mutation is currently paused (see network mode), or is waiting for another mutation with the same scope to finish.
isPending: boolean;Defined in: packages/query-core/src/types.ts:1368
A boolean variable derived from status.
isSuccess: boolean;Defined in: packages/query-core/src/types.ts:1373
A boolean variable derived from status.
mutate: MutateFunction<TData, TError, TVariables, TOnMutateResult>;Defined in: packages/query-core/src/types.ts:1393
The mutation function you can call with variables to trigger the mutation and optionally hooks on additional callback options.
The variables object to pass to the mutationFn.
This function will fire when the mutation is successful and will be passed the mutation's result.
This function will fire if the mutation encounters an error and will be passed the error.
This function will fire when the mutation is either successfully fetched or encounters an error and be passed either the data or error.
reset: () => void;Defined in: packages/query-core/src/types.ts:1397
A function to clean the mutation internal state (i.e., it resets the mutation to its initial state).
void
status: MutationStatus;Defined in: packages/query-core/src/types.ts:1382
The status of the mutation.
submittedAt: number;Defined in: packages/query-core/src/mutation.ts:74
The timestamp for when the mutation was submitted.
variables: TVariables | undefined;Defined in: packages/query-core/src/types.ts:1348
The variables object passed to the mutationFn.