I'm a mongodb noob trying to learn mongodb...
I'm just tying to understand what this line is saying in english...
{ $project : { _id : { $substr : ["$_id",0,1] } } }
can someone translate?
|
I'm a mongodb noob trying to learn mongodb... I'm just tying to understand what this line is saying in english...
can someone translate? |
||||
|
It says that in the response to a query being projected through this expression, the |
|||
|
|
$projectis the verb, not the noun, and is a sort of MongoDB query filter; it's a way of modifying the way objects appear in query results. – Mark Reed Nov 15 '12 at 22:41