GroupByFilterResultItem specifies the grouping results returned for a single filter condition.
Data structure
message GroupByFilterResultItem {
optional int64 row_count = 1;
optional AggregationsResult sub_aggs_result = 2;
optional GroupBysResult sub_group_bys_result = 3;
}
Parameter | Type | Required | Description |
row_count | int64 | Yes | The total number of rows of a single group. |
sub_aggs_result | No | The returned information about the sub-aggregation operation. | |
sub_group_bys_result | No | The returned information about the sub-GroupBy operation. |