I'm wondering if there is a possibility In redux toolkit to access request response of an asyncThunk without passing by store or state or selector. Sometimes we wanna use the data received from a request to perform another request. So can we get the response request without waiting for state or store to update and without using useEffect.
I mean using response received from the asyncThunk in another request something like that: const {id} = await dispatch(getTest())
dispatch (getTestResultById(id))