How to execute and get result of sequential HTTP calls using RxJS
问题 I want to make several HTTP calls sequentially and after each call, I want to examine the result and make another call and display message, etc. In some cases continue to the next call, some cases break on that call after displaying message. On the other hand, I also need to use catchError block of each call (or maybe a single block for all of them, but using one for each call would be better). So, assume that I have an create, update and delete calls as shown below. How can I get each of