I have 2 API calls -- the second call uses something the first call returns. With promises this was easy:
myService.findAll()
// First call
.then(response => {
return myService.findSpecific(response.something);
})
.then(response => {
// result from second API call
});
How would I do this using observables?