I have this service to get all filters of all the dropdown components .
in my ts file I initialized an observable and assigned the value from the result coming from the service.
this.filterList = this.filterService.getFilter(Param)```
in my html
```<options *ngFor="let data of filterList | async" [value]="data.ddvalue">{{data.ddtxt}}</options>```
I will get an empty data. The filterlist if I will subscribe to it, I have a result of an array of objects like : FilterOne[]; FilterTwo[];FilterThree[] and so on.
what I want is I want to get the data from FilterOne[] only.
How can I get the FilterOne[]?