mirror of
https://github.com/apache/superset.git
synced 2026-04-19 08:04:53 +00:00
feat: expand new chart data endpoint coverage (#9903)
* feat: implement new chart API for additional components * Fix python tests * Fix tests * Fix lint * fix camel case error in requestParams * lint * fix samples row limit * Add samples row limit to config * remove unnecessary code * lint * Address review comments
This commit is contained in:
@@ -1383,17 +1383,18 @@ class FilterOperator(str, Enum):
|
||||
REGEX = "REGEX"
|
||||
|
||||
|
||||
class ChartDataResponseType(str, Enum):
|
||||
class ChartDataResultType(str, Enum):
|
||||
"""
|
||||
Chart data response type
|
||||
"""
|
||||
|
||||
FULL = "full"
|
||||
QUERY = "query"
|
||||
RESULTS = "results"
|
||||
SAMPLES = "samples"
|
||||
|
||||
|
||||
class ChartDataResponseFormat(str, Enum):
|
||||
class ChartDataResultFormat(str, Enum):
|
||||
"""
|
||||
Chart data response format
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user