function useIsMutating(filters?, queryClient?): ReactiveValue<number>;Defined in: packages/svelte-query/src/useIsMutating.svelte.ts:28
useIsMutating is an optional hook that returns the number of mutations that your application is running (useful for app-wide loading indicators).
MutationFilters<unknown, Error, unknown, unknown>
MutationFilters to narrow down which mutations to count.
Use this to use a custom QueryClient. Otherwise, the one from the nearest context will be used.
ReactiveValue<number>
A reactive value — read .current to get how many matching mutations are currently running.
<script lang="ts">
import { useIsMutating } from '@tanstack/svelte-query'
// How many mutations matching the posts prefix are in progress?
const isMutatingPosts = useIsMutating({ mutationKey: ['posts'] })
</script>
{#if isMutatingPosts.current}
<span>Saving posts...</span>
{/if}