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: docs/developers/operations-api/nosql-operations.md
+18-15Lines changed: 18 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -266,9 +266,12 @@ Returns data from a table for one or more matching conditions. This supports gro
266
266
-`next`_(optional)_ - This can define the next sort object that will be used to break ties for sorting when there are multiple records with the same value for the first attribute (follows the same structure as `sort`).
267
267
-`get_attributes`_(required)_ - define which attributes you want returned. Use `['*']` to return all attributes
268
268
-`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:
269
-
-`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`
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
269
+
-`attribute`_(required)_ - the attribute you wish to search, can be any attribute
270
+
-`search_attribute` - deprecated in favor of `attribute`
271
+
-`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`
272
+
-`search_type` - deprecated in favor of `comparator`
273
+
-`value`_(required)_ - case-sensitive value you wish to search. If the `comparator` is `between` then use an array of two values to search between
274
+
-`search_value` - deprecated in favor of `value`
272
275
Or a set of grouped conditions has the following properties:
273
276
-`operator`_(optional)_ - the operator used between each condition - `and`, `or`. The default is `and`
274
277
-`conditions`_(required)_ - the array of conditions objects as described above.
@@ -293,27 +296,27 @@ Returns data from a table for one or more matching conditions. This supports gro
Copy file name to clipboardExpand all lines: site/versioned_docs/version-4.6/developers/operations-api/nosql-operations.md
+18-15Lines changed: 18 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -266,9 +266,12 @@ Returns data from a table for one or more matching conditions. This supports gro
266
266
-`next`_(optional)_ - This can define the next sort object that will be used to break ties for sorting when there are multiple records with the same value for the first attribute (follows the same structure as `sort`).
267
267
-`get_attributes`_(required)_ - define which attributes you want returned. Use `['*']` to return all attributes
268
268
-`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:
269
-
-`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`
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
269
+
-`attribute`_(required)_ - the attribute you wish to search, can be any attribute.
270
+
-`search_attribute` - deprecated in favor of `attribute`
271
+
-`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`
272
+
-`search_type` - deprecated in favor of `comparator`
273
+
-`value`_(required)_ - case-sensitive value you wish to search. If the `comparator` is `between` then use an array of two values to search between
274
+
-`search_value` - deprecated in favor of `value`
272
275
Or a set of grouped conditions has the following properties:
273
276
-`operator`_(optional)_ - the operator used between each condition - `and`, `or`. The default is `and`
274
277
-`conditions`_(required)_ - the array of conditions objects as described above.
@@ -293,27 +296,27 @@ Returns data from a table for one or more matching conditions. This supports gro
0 commit comments