class Restforce::Collection

def size

we can rely on the total count of results which Salesforce returns.
requests and going through all of the pages of results, one by one. Instead,
Return the number of items in the Collection without making any additional
def size
  @raw_page['totalSize']
end