ServerSideAggregation
A boolean determining if server side aggregation should be used.
Data Type
bool
Default Value
true
Remarks
By default, this will be set to true to offload as much as possible to the API. There are cases when setting ServerSideAggregation to false can fix some issues. For example, when trying to run an aggregation query on the non-primary key field and there are more than 2000 rows which will be returned (an error EXCEEDED_ID_LIMIT will be thrown). In that case, setting ServerSideAggregation to false will offload the task to the client side, and will fix the issue.