From 594b870069bdfd117a1e69404e37ede48fd2a024 Mon Sep 17 00:00:00 2001 From: brookesargent Date: Wed, 13 Dec 2023 10:40:30 -0500 Subject: [PATCH] remove note about value types --- docs/data-sources/query_specification.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/data-sources/query_specification.md b/docs/data-sources/query_specification.md index 0a533833..61879d67 100644 --- a/docs/data-sources/query_specification.md +++ b/docs/data-sources/query_specification.md @@ -71,9 +71,7 @@ Each query configuration may have zero or more `filter` blocks, which each accep * `value_float` - (Optional) Deprecated: use 'value' instead. The value used for the filter when the column is a float. Mutually exclusive with `value` and the other `value_*` options. * `value_boolean` - (Optional) Deprecated: use 'value' instead. The value used for the filter when the column is a boolean. Mutually exclusive with `value` and the other `value_*` options. --> **NOTE** The type of the filter value should match with the type of the column. To determine the type of a column visit the dataset settings page, all the columns and their type are listed under _Schema_. This provider will not be able to detect invalid combinations. - --> **NOTE** Filter op `in` and `not-in` expect an array of strings as value. Use the `value` attribute and pass the values in single string separated by `,` without additional spaces (similar to the query builder in the UI). For example: the list `foo`, `bar` becomes `foo,bar`. +* -> **NOTE** Filter op `in` and `not-in` expect an array of strings as value. Use the `value` attribute and pass the values in single string separated by `,` without additional spaces (similar to the query builder in the UI). For example: the list `foo`, `bar` becomes `foo,bar`. Each query configuration may have zero or more `order` blocks, which each accept the following arguments. An order term can refer to a `calculation` or a column set in `breakdowns`. When referring to a `calculation`, `op` and `column` must be the same as the calculation.