On an observable of an array, it's possible to call .mergeMap(x => x) instead of .mergeMap(x => Rx.Observalble.from(x)).
While .mergeMap(x => x) should be identical to mergeAll(), in TS it's not allowed to call mergeAll() on Observable<T[]>, but .mergeMap(x => x) is allowed.