Currently, refetch() from useQuery only re-executes the query with the same parameters (query key and options) provided during initialization. There is no built-in way to pass different parameters directly to re
This query is expensive, so I cache it also on the server with the given parameters as caching key in case multiple clients request the same data. When I receive the same parameters on the server, I return the data from the cache. Now I need some way for clients to force a refresh ...