Salesforce · Schema

QueryResult

The result of a SOQL query, containing the matching records and pagination metadata.

AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
totalSize integer The total number of records matching the query. May be larger than the number of records in the current page if the result is paginated.
done boolean Whether all query results have been returned. If false, use nextRecordsUrl to retrieve the next page.
nextRecordsUrl string URL to retrieve the next page of results. Only present when done is false.
records array Array of SObject records matching the query. May be a partial result if the total exceeds the page size.
View JSON Schema on GitHub