I am using RTK Queries for the first time and wondering about the 'correct' way to orchestrate calls?
For example I need to make a call to a login api, get a token and then use that token in all subsequent calls. With something like Saga I would just fire those API calls on the success action of the login API call. But with RTK Queries?...
Do I really need to have a thunk or have a component fire a RTK query manually on a state change indicating the login token in the store? There has to be some official better way to do this right?