नील का जवाब काम कर गया। { $replaceRoot: { newRoot: "$inventory_docs" } }
का जोड़ काम किया। धन्यवाद नील।
db.coll1.aggregate([
{
$lookup:
{
from: "coll2",
localField: "_id",
foreignField: "comm_field",
as: "inventory_docs"
}
},
{
$project:{"_id" : 0, "inventory_docs" : 1}
},
{ $unwind:"$inventory_docs"},
{ $replaceRoot: { newRoot: "$inventory_docs" } }
])