आप bulkWrite
का उपयोग करके देख सकते हैं मोंगोडब में संचालन
मान लीजिए कि आपके पास अद्यतन करने के लिए निम्नलिखित पेलोड हैं
const payload = [
{ key: "city", label: "CITY" }, { key: "gender", label: "GENDER" },
{ key: "city", label: "CITY1" }, { key: "city2", label: "CITY" }
]
दस्तावेज़ों को बल्क में अपडेट करने की क्वेरी
Model.bulkWrite(
payload.map((data) =>
({
updateOne: {
filter: { '_id': 'xxxx', 'additional.key' : { $ne: data.key } },
update: { $push: { additional: data } }
}
})
)
})
जो इस तरह अपडेट करने के लिए थोक में अनुरोध भेजेगा
bulkWrite([
{ updateOne: { filter: { '_id': 'xxxx', 'additional.key' : { $ne: data.key } }, update: { $push: { additional: data } } } },
{ updateOne: { filter: { '_id': 'xxxx', 'additional.key' : { $ne: data.key } }, update: { $push: { additional: data } } } }
])