You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The request mechanism uses a combination of the getKeys and getRecords SOAP methods to retrieve all records matching a query (formatted as an encoded query) 250 at a time. It does this by:
Getting a list of keys, discarding the keys and just using the count to determine how many records match
Looping to retrieve all records using the first_row and last_row query parameters
It then returns an array of hashes containing all fields in the record.