Is it possible to detect when a query becomes "inactive"?
I need to perform a specific "cleanup" action when a query is inactive (ideally also when it's garbage collected). Is there a convention to track these states?
2 Replies
other-emerald•11mo ago
Perhaps some combination of
subscribe
and find
on the QueryCache
: https://tanstack.com/query/latest/docs/reference/QueryCache#querycachesubscribeTanStack | High Quality Open-Source Software for Web Developers
Headless, type-safe, powerful utilities for complex workflows like Data Management, Data Visualization, Charts, Tables, and UI Components.

correct-apricotOP•11mo ago
Thanks