आप $replaceRoot का उपयोग कर सकते हैं 3.4 के बाद से एकत्रीकरण ऑपरेटर:
db.getCollection('sample').aggregate([
{
$replaceRoot: {newRoot: "$field1"}
}
])
उम्मीद के मुताबिक आउटपुट देता है:
{
"subfield" : {},
"subfield2" : [],
"subfield3" : 44,
"subfield5" : "xyz"
}