summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authoradam <adamansky@gmail.com>2013-08-11 23:49:31 +0700
committeradam <adamansky@gmail.com>2013-08-11 23:49:31 +0700
commit4ebb082bf18d3b939e59e10733178ab772eea9fd (patch)
tree88d2fd9855bd97c4a614009c3c41a9e07f175e4a /README.md
parenta06edcd5a6b637304f71e7ad101afb29f53b7dfd (diff)
downloadejdb-4ebb082bf18d3b939e59e10733178ab772eea9fd.tar.gz
ejdb-4ebb082bf18d3b939e59e10733178ab772eea9fd.tar.bz2
ejdb-4ebb082bf18d3b939e59e10733178ab772eea9fd.zip
added refs to $(projection) in code comments
Diffstat (limited to 'README.md')
-rw-r--r--README.md3
1 files changed, 3 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}}