I am beginner in RxJs, please advice me how to transform a list of objects in a list of its names, like here:
import { map } from 'rxjs/operators';
var names = this.http.get<Project[]>('/api/projects').pipe(map(p=> p.name));
it says name does not exist on the Project[]...