useIsMutating
is an optional hook that returns the number
of mutations that your application is fetching (useful for app-wide loading indicators).
import { useIsMutating } from 'react-query'// How many mutations are fetching?const isMutating = useIsMutating()// How many mutations matching the posts prefix are fetching?const isMutatingPosts = useIsMutating(['posts'])
Options
mutationKey?: string | unknown[]
filters?: MutationFilters
: Mutation FiltersReturns
isMutating: number
number
of the mutations that your application is currently fetching.Fast track your learning and
take the offical React Query course ↗️
Your weekly dose of JavaScript news. Delivered every Monday to over 100,000 devs, for free.