This is my first question here, sorry if it isn't detailed enough.
I am looking to make a dynamic amount of requests sequentially (could be a lot) to get data,
I would need this data to be collected from each request and returned as a final observable at the end of the last request.
I have attempted to use forkJoin to combine the requests, although, this does not make each request sequentially and then also concat, which emits and observable after each request.