Hello everyone, I have a question to ask and I hope it's clear enough for you all.
My goal is to send a series of requests one after the other (could be a large number) in order to retrieve data.
The data obtained from each request should be gathered and returned as a single observable once all requests are completed.
I tried using forkJoin
to merge the requests, but it doesn't guarantee sequential execution, and also considered concat
, which emits an observable after each request.