GroupBy: add new groupby variable type and optional groupByKeys (#81717)

* add new groupby type

* rename to groupByKeys + introduce GroupByVariableModel

* fix unit test

* update scenes package

* update interface

* update fixture

* update unit test

* bump to scenes 2.6.2

* remove baseFilters for now
This commit is contained in:
Ashley Harrison
2024-02-07 11:14:04 +00:00
committed by GitHub
parent 5b9b990220
commit af8ea896d0
13 changed files with 97 additions and 34 deletions

View File

@@ -159,6 +159,7 @@ const (
VariableTypeConstant VariableType = "constant"
VariableTypeCustom VariableType = "custom"
VariableTypeDatasource VariableType = "datasource"
VariableTypeGroupby VariableType = "groupby"
VariableTypeInterval VariableType = "interval"
VariableTypeQuery VariableType = "query"
VariableTypeSystem VariableType = "system"