-
Hi all, I'm currently in the process of migrating from react-query v3 to v4 and am considering migrating a few packages at a time. For example, if package A depends on package B and package C but only package C is being migrated to v4...
...this means that the top-level package A needs to have both the v3 and v4 query client providers. Package C can then use the cache provided by the v4 provider while package B uses the cache provided by the v3 provider.
Is this possible or are there any potential issues with this that I'm overlooking? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
sure, they are completely different contexts. However, they can't share queries. |
Beta Was this translation helpful? Give feedback.
sure, they are completely different contexts. However, they can't share queries.