Difference between `queryClient.clear()` and `queryClient.resetQueries()`?
queryClient.clear does, which is not very clear at all based on https://tanstack.com/query/v4/docs/react/reference/QueryClient. The basic use case is:
* User signs out of a mobile app
* Reset all queries, so that data is refetched as an unauthenticated user
It sounds like the method I want to be calling in this case is
resetQueries, but I just wanted to confirm — anyone able to help out? And espeically would love to understand what .clear() is actually doing, I tried playing around with in the a codesandbox but I can't tell Thanks!
Motivation
