What's the way to simplify something like the following code example? I can't find the right operator.. could anyone give a short example?
this.returnsObservable1(...)
.subscribe(
success => {
this.returnsObservable2(...)
.subscribe(
success => {
this.returnsObservable3(...)
.subscribe(
success => {
...
},