react-code-dataset / react-query /docs /framework /angular /guides /invalidations-from-mutations.md
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
|
raw
history blame
995 Bytes
metadata
id: invalidations-from-mutations
title: Invalidations from Mutations
ref: docs/framework/react/guides/invalidations-from-mutations.md
replace:
  useMutation: injectMutation
  hook: function
mutation = injectMutation(() => ({
  mutationFn: postTodo,
}))
import {
  injectMutation,
  QueryClient,
} from '@tanstack/angular-query-experimental'

export class TodosComponent {
  queryClient = inject(QueryClient)

  // When this mutation succeeds, invalidate any queries with the `todos` or `reminders` query key
  mutation = injectMutation(() => ({
    mutationFn: addTodo,
    onSuccess: () => {
      this.queryClient.invalidateQueries({ queryKey: ['todos'] })
      this.queryClient.invalidateQueries({ queryKey: ['reminders'] })
    },
  }))
}

You can wire up your invalidations to happen using any of the callbacks available in the injectMutation function