Dynamically prefix all queryKeys
We have a setup whereby our APIs return different data, based on which
Is there a good way to dynamically transform all query keys and prefix them with the
account_id the JWT is issued for. E.g. posts.list returns posts only for the authorised account_id without having to specify any filters, etc.Is there a good way to dynamically transform all query keys and prefix them with the
account_id, so that we wouldn't have to manually update all queries to do so, and avoid us missing to add it, in which case we can accidentally display stale data from a previously loaded account. I know we could flush the cache every time the account_id changes, but would much prefer to keep the caching in place.