function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Kay DarrKay Darr 

Record retrieval limits

Hi

 

Can anyone point what are the limits around no of records that can be read when we use the following 2 calls

1. retrieve()

2. query()/queryMore()

 

 

Also does queryMore() cause a new API request?

 

I checked the docs but could not find a definitive answer.

 

Thanks

Best Answer chosen by Admin (Salesforce Developers) 
SuperfellSuperfell

1. retrieve 200 records in a single call.

2. query/queryMore 2000 records in a single call, no limit on the total number of rows returned by the query.

 

yes, each call to queryMore is a new API request.

All Answers

SuperfellSuperfell

1. retrieve 200 records in a single call.

2. query/queryMore 2000 records in a single call, no limit on the total number of rows returned by the query.

 

yes, each call to queryMore is a new API request.

This was selected as the best answer
Kay DarrKay Darr

Thanks for you r reply.Makes sense now