DEV Community

Discussion on: React Query: How to organize your keys

 
jackmellis profile image
Jack

It really does

138 instances of useQuery calls

That's 138 unique queries, most of which are used dozens of times across the codebase 😅

Thread Thread
 
jackmellis profile image
Jack

From my experience I think you have to explicitly pass { exact: false } to invalidate partial keys. I could be wrong.