QueryEntries
Query entries in Salesforce objects using SOQL.
Input
| Name | Type | Description |
| Query | String | Query string that specifies the object to query, the fields to return, and any conditions. |
| BatchSize | String | The maximum number of records to return in a single batch. Salesforce.com may enforce minimum and maximum values. |
Output
| Name | Type | Description |
| Done | String | Boolean that indicates if all of the records have been returned. If false, the querylocator value can be passed to subsequent calls to 'salesforceQueryMore'. |
| Querylocator | String | Server-side query identifier for calls to the QueryMoreEntities stored procedure. |
| TotalRecords | String | The total number of records matching the query. |
| sf* | String | Further output varies dependent upon the query. |