Bạn có thể sử dụng $ ReplaceRoot toán tử tổng hợp kể từ 3.4:
db.getCollection('sample').aggregate([
{
$replaceRoot: {newRoot: "$field1"}
}
])
Cung cấp đầu ra như mong đợi:
{
"subfield" : {},
"subfield2" : [],
"subfield3" : 44,
"subfield5" : "xyz"
}