इसके लिए आपको दो अलग-अलग प्रश्न करने होंगे
-
मिलते-जुलते फ़िल्टर से केवल एक आइटम लें
var item = db.collection.findOne({'condition':'some condition'})
-
और आईडी का उपयोग करके आइटम को हटा दें
db.collection.remove({_id: item._id});
इसके लिए आपको दो अलग-अलग प्रश्न करने होंगे
मिलते-जुलते फ़िल्टर से केवल एक आइटम लें
var item = db.collection.findOne({'condition':'some condition'})
और आईडी का उपयोग करके आइटम को हटा दें
db.collection.remove({_id: item._id});