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
Has anyone run into a hard restriction of 10,000 records when using this approach?:
varinit=await client.QueryAsync<T>(tmpquery);varfinished=false;do{finished= init.Done;// add any recordsif(init.Records.Any())
result.AddRange(init.Records);// if moreif(!finished){// get next batchinit=await client.QueryContinuationAsync<T>(init.NextRecordsUrl);}}while(!finished);
The Salesforce documentation is somewhat unclear on this, but this at least correlates to running a SOQL query in Salesforce Developer Console and only getting back a maximum of 10,000 record. It seems that I might have to utilize the Bulk API for a larger query, which this library doesn't seem to support? Anyone have any experience with this and what they did to solve it?
The text was updated successfully, but these errors were encountered:
Has anyone run into a hard restriction of 10,000 records when using this approach?:
The Salesforce documentation is somewhat unclear on this, but this at least correlates to running a SOQL query in Salesforce Developer Console and only getting back a maximum of 10,000 record. It seems that I might have to utilize the Bulk API for a larger query, which this library doesn't seem to support? Anyone have any experience with this and what they did to solve it?
The text was updated successfully, but these errors were encountered: