We are moving our code from SOAP to REST. One of the best features in SOAP was that I could make a ZOQL query for the fields I need for my UI (Visualforce pages in Salesforce). However when I use AQuA and submit a query (REST HTTP POST) for say Account object, for a single crmId, I don't instantly get the response. The response I get shows the record count as '0'. Later if I submit a get with the batchId thats when the record count is 1 and I get the query results. Is it possible to submit a query in AQuA and receive the response realtime. my requirements are very simple like 'select AccountNumber, Status from Account where crmId='001xxxxxxxxxxxxxxxxxxxx''
... View more