Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 671 Bytes

useIsMutating.md

File metadata and controls

23 lines (17 loc) · 671 Bytes
id title
useIsMutating
useIsMutating

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 '@sveltestack/svelte-query'
// How many mutations are fetching?
const isMutating = useIsMutating()
// How many mutations matching the posts prefix are fetching?
const isMutatingPosts = useIsMutating(['posts'])

Options

Returns

  • isMutating: number
    • Will be the number of the mutations that your application is currently fetching.