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
Copy file name to clipboardExpand all lines: apiary.apib
-49Lines changed: 0 additions & 49 deletions
Original file line number
Diff line number
Diff line change
@@ -3251,45 +3251,6 @@ Exported rows can be filtered by a single filter. Examples of filtering by `user
3251
3251
]
3252
3252
}
3253
3253
```
3254
-
- Uses TIME_STRING type to filter by date/time values. Values are converted to timestamps. Equals to filtering by timestamp column.
3255
-
```
3256
-
{
3257
-
"whereFilters": [
3258
-
{
3259
-
"column": "created_at",
3260
-
"values": [
3261
-
"2023-01-01 00:00:00",
3262
-
],
3263
-
"operator": "ge",
3264
-
"type": "TIME_STRING"
3265
-
}
3266
-
]
3267
-
}
3268
-
{
3269
-
"whereFilters": [
3270
-
{
3271
-
"column": "created_at",
3272
-
"values": [
3273
-
"1672531200"
3274
-
],
3275
-
"operator": "ge",
3276
-
"type": "TIME_STRING"
3277
-
}
3278
-
]
3279
-
}
3280
-
{
3281
-
"whereFilters": [
3282
-
{
3283
-
"column": "created_at",
3284
-
"values": [
3285
-
"-2 days"
3286
-
],
3287
-
"operator": "ge",
3288
-
"type": "TIME_STRING"
3289
-
}
3290
-
]
3291
-
}
3292
-
```
3293
3254
- For multiple filters use multiple objects. All filters are joined by AND expression.
3294
3255
```
3295
3256
{
@@ -4238,11 +4199,6 @@ This request is [asynchronous](#introduction/synchronous-and-asynchronous-calls)
4238
4199
+ BIGINT - for number without a decimal point (BigQuery)
4239
4200
+ REAL - for number with a decimal point (BigQuery)
4240
4201
+ DECIMAL - for numbers (BigQuery)
4241
-
+ type (optional, enum[string]) - type of filter values interpretation
4242
-
+ Members
4243
-
+ SCALAR - default value type interpretation (default)
4244
-
+ TIME_STRING - values are interpreted as date/time strings and converted to timestamps. When using TIME_STRING, dataType must be empty. Values must be valid date/time strings compatible with strtotime() or unix timestamps. All time strings are converted to UTC timezone. Be aware of your backend timezone settings and daylight saving time changes.
4245
-
+ Default: SCALAR
4246
4202
+ allowTruncate - (optional, boolean) is used to confirm that you really want to delete all rows in case you did not specify any filters.
4247
4203
+ default: false
4248
4204
@@ -10324,11 +10280,6 @@ Requesting changes will remove all approvals and move the Merge request to `deve
10324
10280
+ BIGINT - for number without a decimal point (BigQuery)
10325
10281
+ REAL - for number with a decimal point (BigQuery)
10326
10282
+ DECIMAL - for numbers (BigQuery)
10327
-
+ type (optional, enum[string]) - type of filter values interpretation
10328
-
+ Members
10329
-
+ SCALAR - default value type interpretation (default)
10330
-
+ TIME_STRING - values are interpreted as date/time strings and converted to timestamps. When using TIME_STRING, dataType must be empty. Values must be valid date/time strings compatible with strtotime() or unix timestamps. All time strings are converted to UTC timezone. Be aware of your backend timezone settings and daylight saving time changes.
0 commit comments