Skip to content

Commit 45db043

Browse files
committed
Note that between conditions are inclusive on both ends
1 parent 077bef4 commit 45db043

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

docs/developers/operations-api/nosql-operations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ Returns data from a table for one or more matching conditions. This supports gro
272272
- `search_attribute` - deprecated in favor of `attribute`
273273
- `comparator` _(required)_ - the type of search to perform - `equals`, `not_equal`, `contains`, `starts_with`, `ends_with`, `greater_than`, `greater_than_equal`, `less_than`, `less_than_equal`, `between`
274274
- `search_type` - deprecated in favor of `comparator`
275-
- `value` _(required)_ - case-sensitive value you wish to search. If the `comparator` is `between` then use an array of two values to search between
275+
- `value` _(required)_ - case-sensitive value you wish to search. If the `comparator` is `between` then use an array of two values to search between (both inclusive)
276276
- `search_value` - deprecated in favor of `value`
277277
Or a set of grouped conditions has the following properties:
278278
- `operator` _(optional)_ - the operator used between each condition - `and`, `or`. The default is `and`

versioned_docs/version-4.2/developers/operations-api/nosql-operations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ Returns data from a table for one or more matching conditions.
264264
- `conditions` _(required)_ - the array of conditions objects, specified below, to filter by. Must include one or more object in the array
265265
- `search_attribute` _(required)_ - the attribute you wish to search, can be any attribute
266266
- `search_type` _(required)_ - the type of search to perform - `equals`, `contains`, `starts_with`, `ends_with`, `greater_than`, `greater_than_equal`, `less_than`, `less_than_equal`, `between`
267-
- `search_value` _(required)_ - case-sensitive value you wish to search. If the `search_type` is `between` then use an array of two values to search between
267+
- `search_value` _(required)_ - case-sensitive value you wish to search. If the `search_type` is `between` then use an array of two values to search between (both inclusive)
268268

269269
### Body
270270

versioned_docs/version-4.3/developers/operations-api/nosql-operations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,8 +267,8 @@ Returns data from a table for one or more matching conditions. This supports gro
267267
- `get_attributes` _(required)_ - define which attributes you want returned. Use `['*']` to return all attributes
268268
- `conditions` _(required)_ - the array of conditions objects, specified below, to filter by. Must include one or more object in the array that are a condition or a grouped set of conditions. A condition has the following properties:
269269
- `search_attribute` _(required)_ - the attribute you wish to search, can be any attribute
270-
- `search_value` _(required)_ - case-sensitive value you wish to search. If the `search_type` is `between` then use an array of two values to search between
271270
- `search_type` _(required)_ - the type of search to perform - `equals`, `not_equal`, `contains`, `starts_with`, `ends_with`, `greater_than`, `greater_than_equal`, `less_than`, `less_than_equal`, `between`
271+
- `search_value` _(required)_ - case-sensitive value you wish to search. If the `search_type` is `between` then use an array of two values to search between (both inclusive)
272272
Or a set of grouped conditions has the following properties:
273273
- `operator` _(optional)_ - the operator used between each condition - `and`, `or`. The default is `and`
274274
- `conditions` _(required)_ - the array of conditions objects as described above.

versioned_docs/version-4.4/developers/operations-api/nosql-operations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ Returns data from a table for one or more matching conditions. This supports gro
268268
- `conditions` _(required)_ - the array of conditions objects, specified below, to filter by. Must include one or more object in the array that are a condition or a grouped set of conditions. A condition has the following properties:
269269
- `search_attribute` _(required)_ - the attribute you wish to search, can be any attribute
270270
- `search_type` _(required)_ - the type of search to perform - `equals`, `not_equal`, `contains`, `starts_with`, `ends_with`, `greater_than`, `greater_than_equal`, `less_than`, `less_than_equal`, `between`
271-
- `search_value` _(required)_ - case-sensitive value you wish to search. If the `search_type` is `between` then use an array of two values to search between
271+
- `search_value` _(required)_ - case-sensitive value you wish to search. If the `search_type` is `between` then use an array of two values to search between (both inclusive)
272272
Or a set of grouped conditions has the following properties:
273273
- `operator` _(optional)_ - the operator used between each condition - `and`, `or`. The default is `and`
274274
- `conditions` _(required)_ - the array of conditions objects as described above.

versioned_docs/version-4.5/developers/operations-api/nosql-operations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,8 +267,8 @@ Returns data from a table for one or more matching conditions. This supports gro
267267
- `get_attributes` _(required)_ - define which attributes you want returned. Use `['*']` to return all attributes
268268
- `conditions` _(required)_ - the array of conditions objects, specified below, to filter by. Must include one or more object in the array that are a condition or a grouped set of conditions. A condition has the following properties:
269269
- `search_attribute` _(required)_ - the attribute you wish to search, can be any attribute
270-
- `search_value` _(required)_ - case-sensitive value you wish to search. If the `search_type` is `between` then use an array of two values to search between
271270
- `search_type` _(required)_ - the type of search to perform - `equals`, `not_equal`, `contains`, `starts_with`, `ends_with`, `greater_than`, `greater_than_equal`, `less_than`, `less_than_equal`, `between`
271+
- `search_value` _(required)_ - case-sensitive value you wish to search. If the `search_type` is `between` then use an array of two values to search between (both inclusive)
272272
Or a set of grouped conditions has the following properties:
273273
- `operator` _(optional)_ - the operator used between each condition - `and`, `or`. The default is `and`
274274
- `conditions` _(required)_ - the array of conditions objects as described above.

versioned_docs/version-4.6/developers/operations-api/nosql-operations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ Returns data from a table for one or more matching conditions. This supports gro
272272
- `search_attribute` - deprecated in favor of `attribute`
273273
- `comparator` _(required)_ - the type of search to perform - `equals`, `not_equal`, `contains`, `starts_with`, `ends_with`, `greater_than`, `greater_than_equal`, `less_than`, `less_than_equal`, `between`
274274
- `search_type` - deprecated in favor of `comparator`
275-
- `value` _(required)_ - case-sensitive value you wish to search. If the `comparator` is `between` then use an array of two values to search between
275+
- `value` _(required)_ - case-sensitive value you wish to search. If the `comparator` is `between` then use an array of two values to search between (both inclusive)
276276
- `search_value` - deprecated in favor of `value`
277277
Or a set of grouped conditions has the following properties:
278278
- `operator` _(optional)_ - the operator used between each condition - `and`, `or`. The default is `and`

versioned_docs/version-4.7/developers/operations-api/nosql-operations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ Returns data from a table for one or more matching conditions. This supports gro
272272
- `search_attribute` - deprecated in favor of `attribute`
273273
- `comparator` _(required)_ - the type of search to perform - `equals`, `not_equal`, `contains`, `starts_with`, `ends_with`, `greater_than`, `greater_than_equal`, `less_than`, `less_than_equal`, `between`
274274
- `search_type` - deprecated in favor of `comparator`
275-
- `value` _(required)_ - case-sensitive value you wish to search. If the `comparator` is `between` then use an array of two values to search between
275+
- `value` _(required)_ - case-sensitive value you wish to search. If the `comparator` is `between` then use an array of two values to search between (both inclusive)
276276
- `search_value` - deprecated in favor of `value`
277277
Or a set of grouped conditions has the following properties:
278278
- `operator` _(optional)_ - the operator used between each condition - `and`, `or`. The default is `and`

0 commit comments

Comments
 (0)