| done |
- Type
-
boolean
- Description
- If true, no
additional rows can be retrieved from the query result.
If false, one or
more rows remain to be retrieved. Use this value as a
loop condition while iterating through query
results.
|
| entityTypeName |
- Type
- string
- Description
- The object or entity type, such as ApexClass or CompactLayoutInfo.
|
| nextRecordsUrl |
- Type
- string
- Description
- If the results exceed the current batch size, this field contains the URL of
the next record in the query result set. This field is
populated for the REST resource queryAll, and is
analogous to queryLocator for SOAP
calls.
|
| queryLocator |
- Type
- QueryLocator
- Description
- If the results exceed the current batch size, this field
contains a unique identifier used to retrieve the next
batch of records. This field is populated for SOAP
queryMore() and
is analogous to the REST resource queryAll.
- Each new batch returns a new
queryLocator value.
|
| records |
- Type
- sObject
- Description
- Array of sObjects matching the data specified in the query.
|
| size |
- Type
- int
- Description
- Total number of rows returned. If no rows were returned, the value is (0). This field is the
same as the size field in
QueryResult in the Enterprise and Partner WSDLs.
|
| totalSize |
- Type
- int
- Description
- Total number of rows returned. Indicates whether the query retrieved any rows
(any value greater than 0) or not (0). This field is the same as the
totalSize field in QueryResult
using the REST resource query or queryAll.
|