I'm trying mongo db and I want to ask if it possible get only specific part of document?
Example
{
"name" : "MongoDB",
"info" : {
x : 203,
y : 102
}
}
And I want only the content of info.
The nearest what I found is db.cellection.find({},{info:1 }) but this return me info: content and I want to return only content.
Is it possible? How?