Is there an operator that works as concatMap but with more than one inner observables
问题 I'm using an observable to query my DB. This observable will return an array with all the matching objects found. My problem is that I want to map the observable with more details that I will retrieve from another API. I tried concatMap but it only let me nest 1 observable inside the initial observable const usersAPI$: Observable<Users[]> = // something const assistsAPI$: Observable<Assists[]> = // something const modifiedAssists$ = assistsAPI$.find().pipe( concatMap(assists => assists.map