Skip to content

Commit

Permalink
Merge branch 'row_spanning' of https://github.com/willholley/couchdb-…
Browse files Browse the repository at this point in the history
  • Loading branch information
wohali committed Sep 9, 2016
2 parents f36a82a + ff409d7 commit 68a8798
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/api/database/find.rst
Original file line number Diff line number Diff line change
Expand Up @@ -488,24 +488,24 @@ Other condition operators require the argument to be in a specific JSON format.
+===============+=============+============+===================================+
| (In)equality | ``$lt`` | Any JSON | The field is less than the |
| | | | argument |
| +-------------+------------+-----------------------------------+
+---------------+-------------+------------+-----------------------------------+
| | ``$lte`` | Any JSON | The field is less than or equal to|
| | | | the argument. |
| +-------------+------------+-----------------------------------+
+---------------+-------------+------------+-----------------------------------+
| | ``$eq`` | Any JSON | The field is equal to the argument|
| +-------------+------------+-----------------------------------+
+---------------+-------------+------------+-----------------------------------+
| | ``$ne`` | Any JSON | The field is not equal to the |
| | | | argument. |
| +-------------+------------+-----------------------------------+
+---------------+-------------+------------+-----------------------------------+
| | ``$gte`` | Any JSON | The field is greater than or equal|
| | | | to the argument. |
| +-------------+------------+-----------------------------------+
+---------------+-------------+------------+-----------------------------------+
| | ``$gt`` | Any JSON | The field is greater than the |
| | | | to the argument. |
+---------------+-------------+------------+-----------------------------------+
| Object | ``$exists`` | Boolean | Check whether the field exists or |
| | | | not, regardless of its value. |
| +-------------+------------+-----------------------------------+
+---------------+-------------+------------+-----------------------------------+
| | ``$type`` | String | Check the document field's type. |
| | | | Valid values are ``"null"``, |
| | | | ``"boolean"``, ``"number"``, |
Expand All @@ -514,10 +514,10 @@ Other condition operators require the argument to be in a specific JSON format.
+---------------+-------------+------------+-----------------------------------+
| Array | ``$in`` | Array of | The document field must exist in |
| | | JSON values| the list provided. |
| +-------------+------------+-----------------------------------+
+---------------+-------------+------------+-----------------------------------+
| | ``$nin`` | Array of | The document field not must exist |
| | | JSON values| in the list provided. |
| +-------------+------------+-----------------------------------+
+---------------+-------------+------------+-----------------------------------+
| | ``$size`` | Integer | Special condition to match the |
| | | | length of an array field in a |
| | | | document. Non-array fields cannot |
Expand All @@ -530,7 +530,7 @@ Other condition operators require the argument to be in a specific JSON format.
| | | | ``field % Divisor == Remainder`` |
| | | | is true, and only when the |
| | | | document field is an integer. |
| +-------------+------------+-----------------------------------+
+---------------+-------------+------------+-----------------------------------+
| | ``$regex`` | String | A regular expression pattern to |
| | | | match against the document field. |
| | | | Only matches when the field is a |
Expand Down

0 comments on commit 68a8798

Please sign in to comment.