Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

useQuery is not reactive to its queryClient parameter #8256

Open
debel27 opened this issue Nov 5, 2024 · 2 comments
Open

useQuery is not reactive to its queryClient parameter #8256

debel27 opened this issue Nov 5, 2024 · 2 comments

Comments

@debel27
Copy link

debel27 commented Nov 5, 2024

Describe the bug

When calling useQuery(opts, queryClient), the hook will (correctly) use the provided queryClient argument as the query client.

However, when calling the hook again with a different QueryClient instance, the hook will keep using the initial query client instance.

Your minimal, reproducible example

https://codesandbox.io/p/sandbox/boring-ellis-rk8smt?workspaceId=1f057848-e245-4f2a-94be-0866c95684db

Steps to reproduce

See the codesanbox for a reproducing example.

In a nutshell, it boils down to

const [queryClient, setQueryClient] = useState(initialQueryClient);

// ...

/* when `queryClient` gets updated to `newQueryClient`, 
 * the hook keeps using `initialQueryClient` internally */
useQuery(opts, queryClient);

// ...

const handleQueryClientChange(newQueryClient) {
  setQueryClient(newQueryClient);
}

Expected behavior

I expected useQuery to be reactive to changes in its queryClient parameter.

How often does this bug happen?

Every time

Screenshots or Videos

No response

Platform

  • MacOS
  • Edge

Tanstack Query adapter

None

TanStack Query version

v5.55.0

TypeScript version

v5.1.6

Additional context

As a workaround, we are setting a key prop to the React component that calls useQuery. The key is updated whenever the queryClient parameter changes. This makes useQuery reset and use the new query client.

This workaround is not ideal for us, because it forces us to "lift the state up", breaking the abstraction of the component.

@TkDodo
Copy link
Collaborator

TkDodo commented Nov 13, 2024

yeah I don’t think we really support swapping out the queryClient on the fly. What would be a use-case for that?

@debel27
Copy link
Author

debel27 commented Nov 13, 2024

I understand how swapping out the queryClient can look odd. This is certainly an advanced use case.

The short answer is that our queryClient is tied to an external "store" instance, like so:

function createQueryClient(store) {
  const queryCache = new QueryCache({
    onSuccess(data) {
      // logic that puts data in `store`
    },
  });
  return new QueryClient({ queryCache });
}

You might be wondering what the purpose of this store instance is, considering that TanStack Query has its own cache already. I can elaborate on that, if you find the topic relevant.

Also, our store instance can get re-created in a subsequent React render. We must therefore call createQueryClient(store) again whenever that happens, in other to get a queryClient that now refers to the new store.

However, since useQuery ignores queryClient updates, we are in a situation where our new store instance remains empty, because the initial queryClient instance is linked to the initial store instance, which is now obsolete.

Tricks like storeRef.current inside onSuccess will not cut it, because we also need to purge the queryCache entirely when the store changes. The store and the queryClient really are tied together.

Again, I am aware this must appear as an unusual use case. Let me know if you need any more information.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants