QueryClientProvider

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
    • Required
    • the QueryClient instance to provide
  • context?: React.Context<QueryClient | undefined> | 'sharing'
    • Set this to React Context of type QueryClient | undefined to use a custom context for this provider.
    • Set this to sharing 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.
    • Otherwise, this defaults to undefined, in which the default context will be used.
Was this page helpful?

Resources

Subscribe to our newsletter

The latest TanStack news, articles, and resources, sent to your inbox.

    I won't send you spam.

    Unsubscribe at any time.

    © 2020 Tanner Linsley. All rights reserved.