In my current scenario, I am faced with the task of sending multiple calls using both GET and DELETE methods followed by a final call.
To elaborate, I have an array of objects that need to be inserted (array2insert) using a http POST request, another array of objects that should be deleted using a http DELETE request (array2delete), and finally a http GET call needs to be made.
I attempted the following approach but it did not yield the desired results:
forkJoin(
from(array2insert).mergeMap(),
from(array2insert).mergeMap()
).pipe(lastGetCall)