QueryMoreEntries
Gets the next batch of records from a previous SOQL query specified by QueryLocator.
Input
| Name | Type | Description |
| QueryLocator | String | Query locator as returned from a previous call to either the QueryEntries or QueryMoreEntries stored procedures. |
| 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 output can be passed to subsequent calls to the QueryMoreEntries stored procedure. |
| QueryLocator | String | Server-side query identifier for calls to the QueryMoreEntries stored procedure. You must use this value to retrieve the next batch of records. |
| TotalRecords | String | The total number of records matching the query. |
| sf* | String | Output varies. |