जब किसी कार्रवाई में पूर्ण दस्तावेज़ों को बंद करना शामिल हो, तो $group . के बारे में सोचें . इसे अपनी पाइपलाइन में जोड़ना आपको सही दिशा में इंगित करना चाहिए।
db.collection.aggregate([
{
"$group": {
_id: "cars",
"cars": {
"$push": {
"$cond": [
{
"$ne": [
{
"$arrayElemAt": [
"$mostRecentValues",
0
]
},
{
"$arrayElemAt": [
"$mostRecentValues",
1
]
}
]
},
"$$ROOT",
"$$REMOVE"
]
}
}
}
},
{
$unwind: "$cars"
}
])
यदि आपके पास प्रत्येक दस्तावेज़ पर केवल 3 फ़ील्ड हैं तो आप जोड़ सकते हैं:
{
$project: {
car_id: "$cars.car_id",
mostRecentTime: "$cars.mostRecentTime",
mostRecentValues: "$cars.MostRecentValues"
}
}