Skip to content

Commit b6ecdea

Browse files
authored
Merge pull request #6323 from keboola/devin/DMD-746-1761913384-wherefilters-support
feat: Add advanced whereFilters support for workspace load endpoint (DMD-746)
2 parents 4cfffa9 + c1d9f74 commit b6ecdea

1 file changed

Lines changed: 10 additions & 8 deletions

File tree

apiary.apib

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5042,7 +5042,7 @@ Loads tables from Storage into a Workspace. BigQuery supports only loading as vi
50425042
+ dataFileId (optional, number) - Required for loading file. File upload id. Can be used only to load file to file workspace.
50435043
+ destination (required) - Destination table name or folder for file workspace
50445044
+ rows (optional, number) - Limits the number of returned rows
5045-
+ seconds (optional, number) - Returns rows created or updated in the last X seconds.
5045+
+ seconds (optional, number) - **Deprecated** (use changedSince and changedUntil instead). Returns rows created or updated in the last X seconds.
50465046
+ changedSince (optional) - Currently only supported for Snowflake - Filtering by import date - timestamp of import is stored within each row. Both until and since values can be a unix timestamp.
50475047
**If the `days` or `seconds` parameter is set, this value is ignored.**
50485048
+ changedUntil (optional) - Currently only supported for snowflake - Filtering by import date - timestamp of import is stored within each row. Both until and since values can be a unix timestamp.
@@ -5073,13 +5073,14 @@ Loads tables from Storage into a Workspace. BigQuery supports only loading as vi
50735073
+ TEXT255
50745074
+ TEXT32K
50755075
+ ZSTD
5076-
+ whereColumn (optional) - Column for [filtering](#reference/tables/unload-data-asynchronously/asynchronous-export)
5077-
+ whereValues[] (optional) - Values for filtering
5078-
+ whereOperator (optional, enum[string]) - Comparison operator
5076+
+ whereColumn (optional) - **Deprecated** (use whereFilters instead). Column for [filtering](#reference/tables/unload-data-asynchronously/asynchronous-export)
5077+
+ whereValues[] (optional) - **Deprecated** (use whereFilters instead). Values for filtering
5078+
+ whereOperator (optional, enum[string]) - **Deprecated** (use whereFilters instead). Comparison operator
50795079
+ Members
50805080
+ eq - Equal to
50815081
+ ne - Not equal to
50825082
+ Default: eq
5083+
+ whereFilters (optional, array[WhereFiltersObject])
50835084
+ sortKey[] (optional, array) - Redshift only - Column(s) to be used as a sort key
50845085
+ distStyle (optional, enum[string]) - Redshift only - Distribution style (even, all, or key)
50855086
+ Members
@@ -5189,7 +5190,7 @@ Loads tables from Storage into a Workspace in [Development Branch](#reference/de
51895190
+ dataFileId (optional, number) - Required for loading file. File upload id. Can be used only to load file to file workspace.
51905191
+ destination (required) - Destination table name or folder for file workspace
51915192
+ rows (optional, number) - Limits the number of returned rows
5192-
+ seconds (optional, number) - Returns rows created or updated in the last X seconds.
5193+
+ seconds (optional, number) - **Deprecated** (use changedSince and changedUntil instead). Returns rows created or updated in the last X seconds.
51935194
+ changedSince (optional) - Currently only supported for Snowflake - Filtering by import date - timestamp of import is stored within each row. Both until and since values can be a unix timestamp.
51945195
**If the `days` or `seconds` parameter is set, this value is ignored.**
51955196
+ changedUntil (optional) - Currently only supported for snowflake - Filtering by import date - timestamp of import is stored within each row. Both until and since values can be a unix timestamp.
@@ -5220,13 +5221,14 @@ Loads tables from Storage into a Workspace in [Development Branch](#reference/de
52205221
+ TEXT255
52215222
+ TEXT32K
52225223
+ ZSTD
5223-
+ whereColumn (optional) - Column for [filtering](#reference/tables/unload-data-asynchronously/asynchronous-export)
5224-
+ whereValues[] (optional) - Values for filtering
5225-
+ whereOperator (optional, enum[string]) - Comparison operator
5224+
+ whereColumn (optional) - **Deprecated** (use whereFilters instead). Column for [filtering](#reference/tables/unload-data-asynchronously/asynchronous-export)
5225+
+ whereValues[] (optional) - **Deprecated** (use whereFilters instead). Values for filtering
5226+
+ whereOperator (optional, enum[string]) - **Deprecated** (use whereFilters instead). Comparison operator
52265227
+ Members
52275228
+ eq - Equal to
52285229
+ ne - Not equal to
52295230
+ Default: eq
5231+
+ whereFilters (optional, array[WhereFiltersObject])
52305232
+ sortKey[] (optional, array) - Redshift only - Column(s) to be used as a sort key
52315233
+ distStyle (optional, enum[string]) - Redshift only - Distribution style (even, all, or key)
52325234
+ Members

0 commit comments

Comments
 (0)