I'm beginner in Angular so I faced a challenge. How to interact with nested http request in Angular using RxJS ?
.pipe(
map((res): Collection => ({
id: res.id,
name: res.name,
description: res.description,
tracks: res.tracks.items.map(track => this.trackService.fetchTrack(track.id)) //?
})
),
)