Is there a way to get specific fields with an Angular $resource? Without creating a new REST endpoint that specifically returns the fields I care about?
For example, let's say I have a Person $resource and it is bound to a REST endpoint where GET returns the full Person object. Is there a way to specify 'select' params (for just _id & names) in addition to the query params? Or do I have to create a PatientNames $resource?