I'm trying Mongo db and I wonder if it's possible to only get a specific part of a document?
For example I have:
{
"name" : "MongoDB",
"info" : { x : 203, y : 102 }
}
and I only want the content of info
.
The closest I found is db.collection.find({}, { info: 1 })
but this returns me { "info" : { x : 203, y : 102 } }
when I only need { x : 203, y : 102 }
.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…