useIsMutating

· abundance's blog


useIsMutating is an optional hook that returns the number of mutations that your application is fetching (useful for app-wide loading indicators).

1import { useIsMutating } from '@tanstack/react-query'
2// How many mutations are fetching?
3const isMutating = useIsMutating()
4// How many mutations matching the posts prefix are fetching?
5const isMutatingPosts = useIsMutating({ mutationKey: ['posts'] })

Options

Returns