I am calling an API that returns a JSON Object. I need just the value of the array to map to a Observable . If I call api that just returns the array my service call works.
.map(res=> res['shows'] ) does the trick
.map(res=> res['shows'] )