Docs
CodeRabbit
Cloudflare
Railway
Netlify
AG Grid
Clerk
OpenRouter
WorkOS
SerpAPI
Sentry
Prisma
Electric
Unkey
CodeRabbit
Cloudflare
Railway
Netlify
AG Grid
Clerk
OpenRouter
WorkOS
SerpAPI
Sentry
Prisma
Electric
Unkey
Community Resources
API Reference

useIsFetching

useIsFetching is an optional hook that returns the number of the queries that your application is loading or fetching in the background (useful for app-wide loading indicators).

js
import { useIsFetching } from 'react-query'
// How many queries are fetching?
const isFetching = useIsFetching()
// How many queries matching the posts prefix are fetching?
const isFetchingPosts = useIsFetching(['posts'])
import { useIsFetching } from 'react-query'
// How many queries are fetching?
const isFetching = useIsFetching()
// How many queries matching the posts prefix are fetching?
const isFetchingPosts = useIsFetching(['posts'])

Options

Returns

  • isFetching: number
    • Will be the number of the queries that your application is currently loading or fetching in the background.