Use the QueryClientProvider
component to connect and provide a QueryClient
to your application:
import { QueryClient, QueryClientProvider } from 'react-query'
const queryClient = new QueryClient()
function App() { return <QueryClientProvider client={queryClient}>...</QueryClientProvider>}
Options
client: QueryClient
contextSharing: boolean
false
true
to enable context sharing, which will share the first and at least one instance of the context across the window to ensure that if React Query is used across different bundles or microfrontends they will all use the same instance of context, regardless of module scoping.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.