Skip to content

Commit 077bef4

Browse files
committed
Add not_equal comparator to NoSQL operations
It was already present in the v4.4 docs
1 parent 43831af commit 077bef4

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ Returns data from a table for one or more matching conditions. This supports gro
270270
- `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:
271271
- `attribute` _(required)_ - the attribute you wish to search, can be any attribute
272272
- `search_attribute` - deprecated in favor of `attribute`
273-
- `comparator` _(required)_ - the type of search to perform - `equals`, `contains`, `starts_with`, `ends_with`, `greater_than`, `greater_than_equal`, `less_than`, `less_than_equal`, `between`
273+
- `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`
275275
- `value` _(required)_ - case-sensitive value you wish to search. If the `comparator` is `between` then use an array of two values to search between
276276
- `search_value` - deprecated in favor of `value`

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_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`
271270
- `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_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`
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_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`
271270
- `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_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`
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
@@ -270,7 +270,7 @@ Returns data from a table for one or more matching conditions. This supports gro
270270
- `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:
271271
- `attribute` _(required)_ - the attribute you wish to search, can be any attribute.
272272
- `search_attribute` - deprecated in favor of `attribute`
273-
- `comparator` _(required)_ - the type of search to perform - `equals`, `contains`, `starts_with`, `ends_with`, `greater_than`, `greater_than_equal`, `less_than`, `less_than_equal`, `between`
273+
- `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`
275275
- `value` _(required)_ - case-sensitive value you wish to search. If the `comparator` is `between` then use an array of two values to search between
276276
- `search_value` - deprecated in favor of `value`

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
@@ -270,7 +270,7 @@ Returns data from a table for one or more matching conditions. This supports gro
270270
- `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:
271271
- `attribute` _(required)_ - the attribute you wish to search, can be any attribute
272272
- `search_attribute` - deprecated in favor of `attribute`
273-
- `comparator` _(required)_ - the type of search to perform - `equals`, `contains`, `starts_with`, `ends_with`, `greater_than`, `greater_than_equal`, `less_than`, `less_than_equal`, `between`
273+
- `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`
275275
- `value` _(required)_ - case-sensitive value you wish to search. If the `comparator` is `between` then use an array of two values to search between
276276
- `search_value` - deprecated in favor of `value`

0 commit comments

Comments
 (0)