You want to add multiple values to an array in one update. What is wrong with `$push: { tags: ["a", "b"] }`?db.col.updateOne( { _id: 1 }, { $push: { tags: ["a", "b"] } } )