I have two service svcA, svcB. The svcA result is Observable<ObjA>. The svcB result is Observable<Array<ObjB>>. The svcA result is the parameter of the svcB.
How can I implement this in a route resolver which result is Observable<Array<ObjB>>?
Unfortunately RxJs version is below 5.5
Thanks