I have an application that does REST queries to populate data into reports; there are no maps involved. Some of the reports can contain a great deal of data-- more than 32,000 records. Is there a way to update the standardMaxRecordCount for a feature layer? The code is C#, not JavaScript--please don't suggest JavaScript answers as re-writing all of the reports at this point is not feasible.
The REST API update Definition (Feature Layer) Example five shows the standardMaxRecordCount in the list of properties-but when I attempt to update using this JSON, only the maxRecordCount was modified:
{
"maxRecordCount" : 3000,
"standardMaxRecordCount" : 40000,
"maxRecordCountFactor" : 1,
"exceedsLimitFactor" : 1
}
How does the maxRecordCountFactor impact the number of records returned?
Is there something that explains the relationship between maxRecordCount, standardMaxRecordCount, and maxRecordCountFactor.