When you optimistically update your state before performing a mutation, there is a chance that the mutation will fail. In most of these failure cases, you can just trigger a refetch for your optimistic queries to revert them to their true server state. In some circumstances though, refetching may not work correctly and the mutation error could represent some type of server issue that won't make it possible to refetch. In this event, you can instead choose to rollback your update.
To do this, useMutation
's onMutate
handler option allows you to return a value that will later be passed to both onError
and onSettled
handlers as the last argument. In most cases, it is most useful to pass a rollback function.
const queryClient = useQueryClient()useMutation(updateTodo, {// When mutate is called:onMutate: async newTodo => {// Cancel any outgoing refetches (so they don't overwrite our optimistic update)await queryClient.cancelQueries('todos')// Snapshot the previous valueconst previousTodos = queryClient.getQueryData('todos')// Optimistically update to the new valuequeryClient.setQueryData('todos', old => [...old, newTodo])// Return a context object with the snapshotted valuereturn { previousTodos }},// If the mutation fails, use the context returned from onMutate to roll backonError: (err, newTodo, context) => {queryClient.setQueryData('todos', context.previousTodos)},// Always refetch after error or success:onSettled: () => {queryClient.invalidateQueries('todos')},})
useMutation(updateTodo, {// When mutate is called:onMutate: async newTodo => {// Cancel any outgoing refetches (so they don't overwrite our optimistic update)await queryClient.cancelQueries(['todos', newTodo.id])// Snapshot the previous valueconst previousTodo = queryClient.getQueryData(['todos', newTodo.id])// Optimistically update to the new valuequeryClient.setQueryData(['todos', newTodo.id], newTodo)// Return a context with the previous and new todoreturn { previousTodo, newTodo }},// If the mutation fails, use the context we returned aboveonError: (err, newTodo, context) => {queryClient.setQueryData(['todos', context.newTodo.id],context.previousTodo)},// Always refetch after error or success:onSettled: newTodo => {queryClient.invalidateQueries(['todos', newTodo.id])},})
You can also use the onSettled
function in place of the separate onError
and onSuccess
handlers if you wish:
useMutation(updateTodo, {// ...onSettled: (newTodo, error, variables, context) => {if (error) {// do something}},})
The best JavaScript newsletter! Delivered every Monday to over 76,000 devs.