rest - how can I use active Record queries with salesforce as the data-store? -
i connecting salesforce.com data-store , accessing rest api's.
currently, query, have use soql, query language.
how can use activerecord type 'where' queries instead?
you don't have use soql retrieve records via salesforce.com rest api, if retrieving id of record. this, can use following syntax:
/vxx.x/sobjects/sobjectname/id/
to retrieve records meet specific clause other id, don't believe there alternative soql @ point directly in rest api.
however, if using ruby, there ruby toolkit salesforce support using active record style syntax. open source project , can find out more here:
http://quintonwall.com/wp-content/uploads/2011/02/rubytoolkit-gettingstarted.pdf
here couple of examples above document:
there toolkits other languages, not sure of support active record style record access.
Comments
Post a Comment