summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md3
-rw-r--r--node/ejdb.js2
-rw-r--r--tcejdb/ejdb.h2
3 files changed, 7 insertions, 0 deletions
diff --git a/README.md b/README.md
index ce0c754..fa541eb 100644
--- a/README.md
+++ b/README.md
@@ -538,6 +538,9 @@ Queries
* - {..., $or : [subq1, subq2, ...] }
* Example: {z : 33, $and : [ {$or : [{a : 1}, {b : 2}]}, {$or : [{c : 5}, {d : 7}]} ] }
*
+ * - Mongodb $(projection) operator supported. (http://docs.mongodb.org/manual/reference/projection/positional/#proj._S_)
+ *
+ *
* - Queries can be used to update records:
* $set Field set operation.
* - {.., '$set' : {'field1' : val1, 'fieldN' : valN}}
diff --git a/node/ejdb.js b/node/ejdb.js
index 2d38624..36982fc 100644
--- a/node/ejdb.js
+++ b/node/ejdb.js
@@ -325,6 +325,8 @@ function parseQueryArgs(args) {
* - {..., $or : [subq1, subq2, ...] }
* Example: {z : 33, $and : [ {$or : [{a : 1}, {b : 2}]}, {$or : [{c : 5}, {d : 7}]} ] }
*
+ * - Mongodb $(projection) operator supported. (http://docs.mongodb.org/manual/reference/projection/positional/#proj._S_)
+ *
* - Queries can be used to update records:
*
* $set Field set operation.
diff --git a/tcejdb/ejdb.h b/tcejdb/ejdb.h
index 92770ce..bcef111 100644
--- a/tcejdb/ejdb.h
+++ b/tcejdb/ejdb.h
@@ -299,6 +299,8 @@ EJDB_EXPORT bson* ejdbloadbson(EJCOLL *coll, const bson_oid_t *oid);
* - {..., $or : [subq1, subq2, ...] }
* Example: {z : 33, $and : [ {$or : [{a : 1}, {b : 2}]}, {$or : [{c : 5}, {d : 7}]} ] }
*
+ * - Mongodb $(projection) operator supported. (http://docs.mongodb.org/manual/reference/projection/positional/#proj._S_)
+ *
* - Queries can be used to update records:
*
* $set Field set operation.