added refs to $(projection) in code comments
authoradam <adamansky@gmail.com>
Sun, 11 Aug 2013 16:49:31 +0000 (23:49 +0700)
committeradam <adamansky@gmail.com>
Sun, 11 Aug 2013 16:49:31 +0000 (23:49 +0700)
README.md
node/ejdb.js
tcejdb/ejdb.h

index ce0c754..fa541eb 100644 (file)
--- 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}}
index 2d38624..36982fc 100644 (file)
@@ -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.
index 92770ce..bcef111 100644 (file)
@@ -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.