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
|`not_equals`| The query will return all documents where the value is not equal. |
46
-
|`greater_than`| For numeric or date-based fields. |
47
-
|`greater_than_equal`| For numeric or date-based fields. |
48
-
|`less_than`| For numeric or date-based fields. |
49
-
|`less_than_equal`| For numeric or date-based fields. |
50
-
|`like`| Case-insensitive string must be present. If string of words, all words must be present, in any order. |
51
-
|`contains`| Must contain the value entered, case-insensitive. |
52
-
|`in`| The value must be found within the provided comma-delimited list of values. |
53
-
|`not_in`| The value must NOT be within the provided comma-delimited list of values. |
54
-
|`all`| The value must contain all values provided in the comma-delimited list. |
55
-
|`exists`| Only return documents where the value either exists (`true`) or does not exist (`false`). |
56
-
|`near`| For distance related to a [Point Field](../fields/point) comma separated as `<longitude>, <latitude>, <maxDistance in meters (nullable)>, <minDistance in meters (nullable)>`. |
57
-
|`within`| For [Point Fields](../fields/point) to filter documents based on whether points are inside of the given area defined in GeoJSON. [Example](../fields/point#querying-within)|
58
-
|`intersects`| For [Point Fields](../fields/point) to filter documents based on whether points intersect with the given area defined in GeoJSON. [Example](../fields/point#querying-intersects)|
|`not_equals`| The query will return all documents where the value is not equal. |
46
+
|`greater_than`| For numeric or date-based fields. |
47
+
|`greater_than_equal`| For numeric or date-based fields. |
48
+
|`less_than`| For numeric or date-based fields. |
49
+
|`less_than_equal`| For numeric or date-based fields. |
50
+
|`like`| Case-insensitive string must be present. If string of words, all words must be present, in any order. |
51
+
|`contains`| Must contain the value entered, case-insensitive. |
52
+
|`in`| The value must be found within the provided comma-delimited list of values. |
53
+
|`not_in`| The value must NOT be within the provided comma-delimited list of values. |
54
+
|`all`| The value must contain all values provided in the comma-delimited list. Note: currently this operator is supported only with the MongoDB adapter.|
55
+
|`exists`| Only return documents where the value either exists (`true`) or does not exist (`false`). |
56
+
|`near`| For distance related to a [Point Field](../fields/point) comma separated as `<longitude>, <latitude>, <maxDistance in meters (nullable)>, <minDistance in meters (nullable)>`. |
57
+
|`within`| For [Point Fields](../fields/point) to filter documents based on whether points are inside of the given area defined in GeoJSON. [Example](../fields/point#querying-within)|
58
+
|`intersects`| For [Point Fields](../fields/point) to filter documents based on whether points intersect with the given area defined in GeoJSON. [Example](../fields/point#querying-intersects)|
0 commit comments