Advanced REST API Query
Summary
How to perform advanced API queriesContent
I need an advanced query beyond the basic "q=Column=Value"
I have a Custom object joined to the Account object with Account DCL field on the custom object.
Is it possible to use the REST API to return and filter day similar to this pseudo query provided in the code snippet?
Version
20CCode Snippet
SELECT CustomObject_C.RecordName, Account_c.OrganizationName FROM CustomObject_C WEHRE CustomObject_C.Status_c IN ('OPEN','CLOSED','WAITING')
0