You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
dataset_part_id: Annotated[StrictStr, Field(description="the Dataset part identifier")],
4102
-
selects: Annotated[Optional[List[StrictStr]], Field(description="Column names that should be part of the response data. You can specify a column name like: - id - stock - quantity - ... If you want to select only distinct columns, add a '*' at the end of the column name (e.g. stock*). ")] =None,
4103
-
sums: Annotated[Optional[List[StrictStr]], Field(description="Column names to sum by. If you want to sum only distinct columns, add a '*' at the end of the column name (e.g. stock*). ")] =None,
4104
-
avgs: Annotated[Optional[List[StrictStr]], Field(description="Column names to average by. If you want to apply 'average' only on distinct columns, add a '*' at the end of the column name (e.g. stock*). ")] =None,
4105
-
counts: Annotated[Optional[List[StrictStr]], Field(description="Column names to count by. If you want to count only distinct columns, add a '*' at the end of the column name (e.g. stock*). ")] =None,
4106
-
mins: Annotated[Optional[List[StrictStr]], Field(description="Column names to min by. If you want to apply 'min' only on distinct columns, add a '*' at the end of the column name (e.g. stock*). ")] =None,
4107
-
maxs: Annotated[Optional[List[StrictStr]], Field(description="Column names to max by. If you want to apply 'max' only on distinct columns, add a '*' at the end of the column name (e.g. stock*). ")] =None,
4102
+
selects: Annotated[Optional[List[StrictStr]], Field(description="Column names that should be part of the response data. You can specify a column name like: - id - stock - quantity - ... If you want to select only distinct columns, add a * at the end of the column name (e.g. stock*). ")] =None,
4103
+
sums: Annotated[Optional[List[StrictStr]], Field(description="Column names to sum by. If you want to sum only distinct columns, add a * at the end of the column name (e.g. stock*). ")] =None,
4104
+
avgs: Annotated[Optional[List[StrictStr]], Field(description="Column names to average by. If you want to apply 'average' only on distinct columns, add a * at the end of the column name (e.g. stock*). ")] =None,
4105
+
counts: Annotated[Optional[List[StrictStr]], Field(description="Column names to count by. If you want to count only distinct columns, add a * at the end of the column name (e.g. stock*). ")] =None,
4106
+
mins: Annotated[Optional[List[StrictStr]], Field(description="Column names to min by. If you want to apply 'min' only on distinct columns, add a * at the end of the column name (e.g. stock*). ")] =None,
4107
+
maxs: Annotated[Optional[List[StrictStr]], Field(description="Column names to max by. If you want to apply 'max' only on distinct columns, add a * at the end of the column name (e.g. stock*). ")] =None,
group_bys: Annotated[Optional[List[StrictStr]], Field(description="Column names to group by")] =None,
@@ -4133,17 +4133,17 @@ def query_data(
4133
4133
:type dataset_id: str
4134
4134
:param dataset_part_id: the Dataset part identifier (required)
4135
4135
:type dataset_part_id: str
4136
-
:param selects: Column names that should be part of the response data. You can specify a column name like: - id - stock - quantity - ... If you want to select only distinct columns, add a '*' at the end of the column name (e.g. stock*).
4136
+
:param selects: Column names that should be part of the response data. You can specify a column name like: - id - stock - quantity - ... If you want to select only distinct columns, add a * at the end of the column name (e.g. stock*).
4137
4137
:type selects: List[str]
4138
-
:param sums: Column names to sum by. If you want to sum only distinct columns, add a '*' at the end of the column name (e.g. stock*).
4138
+
:param sums: Column names to sum by. If you want to sum only distinct columns, add a * at the end of the column name (e.g. stock*).
4139
4139
:type sums: List[str]
4140
-
:param avgs: Column names to average by. If you want to apply 'average' only on distinct columns, add a '*' at the end of the column name (e.g. stock*).
4140
+
:param avgs: Column names to average by. If you want to apply 'average' only on distinct columns, add a * at the end of the column name (e.g. stock*).
4141
4141
:type avgs: List[str]
4142
-
:param counts: Column names to count by. If you want to count only distinct columns, add a '*' at the end of the column name (e.g. stock*).
4142
+
:param counts: Column names to count by. If you want to count only distinct columns, add a * at the end of the column name (e.g. stock*).
4143
4143
:type counts: List[str]
4144
-
:param mins: Column names to min by. If you want to apply 'min' only on distinct columns, add a '*' at the end of the column name (e.g. stock*).
4144
+
:param mins: Column names to min by. If you want to apply 'min' only on distinct columns, add a * at the end of the column name (e.g. stock*).
4145
4145
:type mins: List[str]
4146
-
:param maxs: Column names to max by. If you want to apply 'max' only on distinct columns, add a '*' at the end of the column name (e.g. stock*).
4146
+
:param maxs: Column names to max by. If you want to apply 'max' only on distinct columns, add a * at the end of the column name (e.g. stock*).
dataset_part_id: Annotated[StrictStr, Field(description="the Dataset part identifier")],
4224
-
selects: Annotated[Optional[List[StrictStr]], Field(description="Column names that should be part of the response data. You can specify a column name like: - id - stock - quantity - ... If you want to select only distinct columns, add a '*' at the end of the column name (e.g. stock*). ")] =None,
4225
-
sums: Annotated[Optional[List[StrictStr]], Field(description="Column names to sum by. If you want to sum only distinct columns, add a '*' at the end of the column name (e.g. stock*). ")] =None,
4226
-
avgs: Annotated[Optional[List[StrictStr]], Field(description="Column names to average by. If you want to apply 'average' only on distinct columns, add a '*' at the end of the column name (e.g. stock*). ")] =None,
4227
-
counts: Annotated[Optional[List[StrictStr]], Field(description="Column names to count by. If you want to count only distinct columns, add a '*' at the end of the column name (e.g. stock*). ")] =None,
4228
-
mins: Annotated[Optional[List[StrictStr]], Field(description="Column names to min by. If you want to apply 'min' only on distinct columns, add a '*' at the end of the column name (e.g. stock*). ")] =None,
4229
-
maxs: Annotated[Optional[List[StrictStr]], Field(description="Column names to max by. If you want to apply 'max' only on distinct columns, add a '*' at the end of the column name (e.g. stock*). ")] =None,
4224
+
selects: Annotated[Optional[List[StrictStr]], Field(description="Column names that should be part of the response data. You can specify a column name like: - id - stock - quantity - ... If you want to select only distinct columns, add a * at the end of the column name (e.g. stock*). ")] =None,
4225
+
sums: Annotated[Optional[List[StrictStr]], Field(description="Column names to sum by. If you want to sum only distinct columns, add a * at the end of the column name (e.g. stock*). ")] =None,
4226
+
avgs: Annotated[Optional[List[StrictStr]], Field(description="Column names to average by. If you want to apply 'average' only on distinct columns, add a * at the end of the column name (e.g. stock*). ")] =None,
4227
+
counts: Annotated[Optional[List[StrictStr]], Field(description="Column names to count by. If you want to count only distinct columns, add a * at the end of the column name (e.g. stock*). ")] =None,
4228
+
mins: Annotated[Optional[List[StrictStr]], Field(description="Column names to min by. If you want to apply 'min' only on distinct columns, add a * at the end of the column name (e.g. stock*). ")] =None,
4229
+
maxs: Annotated[Optional[List[StrictStr]], Field(description="Column names to max by. If you want to apply 'max' only on distinct columns, add a * at the end of the column name (e.g. stock*). ")] =None,
:param dataset_part_id: the Dataset part identifier (required)
4257
4257
:type dataset_part_id: str
4258
-
:param selects: Column names that should be part of the response data. You can specify a column name like: - id - stock - quantity - ... If you want to select only distinct columns, add a '*' at the end of the column name (e.g. stock*).
4258
+
:param selects: Column names that should be part of the response data. You can specify a column name like: - id - stock - quantity - ... If you want to select only distinct columns, add a * at the end of the column name (e.g. stock*).
4259
4259
:type selects: List[str]
4260
-
:param sums: Column names to sum by. If you want to sum only distinct columns, add a '*' at the end of the column name (e.g. stock*).
4260
+
:param sums: Column names to sum by. If you want to sum only distinct columns, add a * at the end of the column name (e.g. stock*).
4261
4261
:type sums: List[str]
4262
-
:param avgs: Column names to average by. If you want to apply 'average' only on distinct columns, add a '*' at the end of the column name (e.g. stock*).
4262
+
:param avgs: Column names to average by. If you want to apply 'average' only on distinct columns, add a * at the end of the column name (e.g. stock*).
4263
4263
:type avgs: List[str]
4264
-
:param counts: Column names to count by. If you want to count only distinct columns, add a '*' at the end of the column name (e.g. stock*).
4264
+
:param counts: Column names to count by. If you want to count only distinct columns, add a * at the end of the column name (e.g. stock*).
4265
4265
:type counts: List[str]
4266
-
:param mins: Column names to min by. If you want to apply 'min' only on distinct columns, add a '*' at the end of the column name (e.g. stock*).
4266
+
:param mins: Column names to min by. If you want to apply 'min' only on distinct columns, add a * at the end of the column name (e.g. stock*).
4267
4267
:type mins: List[str]
4268
-
:param maxs: Column names to max by. If you want to apply 'max' only on distinct columns, add a '*' at the end of the column name (e.g. stock*).
4268
+
:param maxs: Column names to max by. If you want to apply 'max' only on distinct columns, add a * at the end of the column name (e.g. stock*).
dataset_part_id: Annotated[StrictStr, Field(description="the Dataset part identifier")],
4346
-
selects: Annotated[Optional[List[StrictStr]], Field(description="Column names that should be part of the response data. You can specify a column name like: - id - stock - quantity - ... If you want to select only distinct columns, add a '*' at the end of the column name (e.g. stock*). ")] =None,
4347
-
sums: Annotated[Optional[List[StrictStr]], Field(description="Column names to sum by. If you want to sum only distinct columns, add a '*' at the end of the column name (e.g. stock*). ")] =None,
4348
-
avgs: Annotated[Optional[List[StrictStr]], Field(description="Column names to average by. If you want to apply 'average' only on distinct columns, add a '*' at the end of the column name (e.g. stock*). ")] =None,
4349
-
counts: Annotated[Optional[List[StrictStr]], Field(description="Column names to count by. If you want to count only distinct columns, add a '*' at the end of the column name (e.g. stock*). ")] =None,
4350
-
mins: Annotated[Optional[List[StrictStr]], Field(description="Column names to min by. If you want to apply 'min' only on distinct columns, add a '*' at the end of the column name (e.g. stock*). ")] =None,
4351
-
maxs: Annotated[Optional[List[StrictStr]], Field(description="Column names to max by. If you want to apply 'max' only on distinct columns, add a '*' at the end of the column name (e.g. stock*). ")] =None,
4346
+
selects: Annotated[Optional[List[StrictStr]], Field(description="Column names that should be part of the response data. You can specify a column name like: - id - stock - quantity - ... If you want to select only distinct columns, add a * at the end of the column name (e.g. stock*). ")] =None,
4347
+
sums: Annotated[Optional[List[StrictStr]], Field(description="Column names to sum by. If you want to sum only distinct columns, add a * at the end of the column name (e.g. stock*). ")] =None,
4348
+
avgs: Annotated[Optional[List[StrictStr]], Field(description="Column names to average by. If you want to apply 'average' only on distinct columns, add a * at the end of the column name (e.g. stock*). ")] =None,
4349
+
counts: Annotated[Optional[List[StrictStr]], Field(description="Column names to count by. If you want to count only distinct columns, add a * at the end of the column name (e.g. stock*). ")] =None,
4350
+
mins: Annotated[Optional[List[StrictStr]], Field(description="Column names to min by. If you want to apply 'min' only on distinct columns, add a * at the end of the column name (e.g. stock*). ")] =None,
4351
+
maxs: Annotated[Optional[List[StrictStr]], Field(description="Column names to max by. If you want to apply 'max' only on distinct columns, add a * at the end of the column name (e.g. stock*). ")] =None,
:param dataset_part_id: the Dataset part identifier (required)
4379
4379
:type dataset_part_id: str
4380
-
:param selects: Column names that should be part of the response data. You can specify a column name like: - id - stock - quantity - ... If you want to select only distinct columns, add a '*' at the end of the column name (e.g. stock*).
4380
+
:param selects: Column names that should be part of the response data. You can specify a column name like: - id - stock - quantity - ... If you want to select only distinct columns, add a * at the end of the column name (e.g. stock*).
4381
4381
:type selects: List[str]
4382
-
:param sums: Column names to sum by. If you want to sum only distinct columns, add a '*' at the end of the column name (e.g. stock*).
4382
+
:param sums: Column names to sum by. If you want to sum only distinct columns, add a * at the end of the column name (e.g. stock*).
4383
4383
:type sums: List[str]
4384
-
:param avgs: Column names to average by. If you want to apply 'average' only on distinct columns, add a '*' at the end of the column name (e.g. stock*).
4384
+
:param avgs: Column names to average by. If you want to apply 'average' only on distinct columns, add a * at the end of the column name (e.g. stock*).
4385
4385
:type avgs: List[str]
4386
-
:param counts: Column names to count by. If you want to count only distinct columns, add a '*' at the end of the column name (e.g. stock*).
4386
+
:param counts: Column names to count by. If you want to count only distinct columns, add a * at the end of the column name (e.g. stock*).
4387
4387
:type counts: List[str]
4388
-
:param mins: Column names to min by. If you want to apply 'min' only on distinct columns, add a '*' at the end of the column name (e.g. stock*).
4388
+
:param mins: Column names to min by. If you want to apply 'min' only on distinct columns, add a * at the end of the column name (e.g. stock*).
4389
4389
:type mins: List[str]
4390
-
:param maxs: Column names to max by. If you want to apply 'max' only on distinct columns, add a '*' at the end of the column name (e.g. stock*).
4390
+
:param maxs: Column names to max by. If you want to apply 'max' only on distinct columns, add a * at the end of the column name (e.g. stock*).
0 commit comments