
const {data,error,isError,isIdle,isLoading,isPaused,isSuccess,mutate,mutateAsync,reset,status,} = useMutation(mutationFn, {onError,onMutate,onSettled,onSuccess,useErrorBoundary,})mutate(variables, {onError,onSettled,onSuccess,})
Options
mutationFn: (variables: TVariables) => Promise<TData>variables is an object that mutate will pass to your mutationFnmutationKey: stringqueryClient.setMutationDefaults or to identify the mutation in the devtools.onMutate: (variables: TVariables) => Promise<TContext | void> | TContext | voidonError and onSettled functions in the event of a mutation failure and can be useful for rolling back optimistic updates.onSuccess: (data: TData, variables: TVariables, context?: TContext) => Promise<void> | voidonError: (err: TError, variables: TVariables, context?: TContext) => Promise<void> | voidonSettled: (data: TData, error: TError, variables: TVariables, context?: TContext) => Promise<void> | voidretry: boolean | number | (failureCount: number, error: TError) => booleanfalse, failed mutations will not retry by default.true, failed mutations will retry infinitely.number, e.g. 3, failed mutations will retry until the failed mutations count meets that number.retryDelay: (retryAttempt: number) => numberretryAttempt integer and returns the delay to apply before the next attempt in milliseconds.attempt => Math.min(attempt > 1 ? 2 ** attempt * 1000 : 1000, 30 * 1000) applies exponential backoff.attempt => attempt * 1000 applies linear backoff.useErrorBoundaryuseErrorBoundary value, which is falseReturns
mutate: (variables: TVariables, { onSuccess, onSettled, onError }) => voiduseMutation.variables: TVariablesmutationFn.useMutation hook.onSuccess will fire only after the latest call you've made.mutateAsync: (variables: TVariables, { onSuccess, onSettled, onError }) => Promise<TData>mutate but returns a promise which can be awaited.status: stringidle initial status prior to the mutation function executing.loading if the mutation is currently executing.error if the last mutation attempt resulted in an error.success if the last mutation attempt was successful.isIdle, isLoading, isSuccess, isError: boolean variables derived from statusdata: undefined | unknownundefinederror: null | TErrorreset: () => voidThe latest TanStack news, articles, and resources, sent to your inbox.