Method: Restforce::Collection#size
- Defined in:
- lib/restforce/collection.rb
permalink #size ⇒ Object Also known as: length
Return the number of items in the Collection without making any additional requests and going through all of the pages of results, one by one. Instead, we can rely on the total count of results which Salesforce returns.
Most of the Salesforce API returns this in the ‘totalSize` attribute. For some reason, the [List View Results](developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_listviewresults.htm) endpoint (and maybe others?!) uses the `size` attribute.
37 38 39 |
# File 'lib/restforce/collection.rb', line 37 def size @raw_page['totalSize'] || @raw_page['size'] end |