In redux devtool on the webapp I'm currently in the process of transforming to RTK query, I see three interesting payloads go by, that I could have made use of in other reducers:



Unfortunately they all have the same redux action type.
It's possible that one could look into the meta structure to find something to switch on, but:
- A lesson learned early in my redux use was that switching on something other than the type is a bad idea
- The meta data struture isn't easy to figure out and is probably intended to be opaque and will possibly/probably change without notice...?
But making the action type unique for each endpoint of the api object would make the redux value easy to use in other reducers.