chicks / sugarcrm

A ruby based REST Client for SugarCRM
MIT License
90 stars 64 forks source link

Is there any way to restrict the fields that are returned as per the "select_fields Array Optional. A list of fields to include in the results" from the REST API documentation? #86

Closed aew closed 11 years ago

aew commented 11 years ago

Found it:

@accounts = SugarCRM::Account.all({ :fields=>['id' , 'nombre_contact_c', 'estado_c', 'date_modified'], :limit=>10, :order_by=>'date_modified DESC', })

chicks commented 11 years ago

There are my favorite kind of issues! :)