MongoDB Mongoose Pembaruan Hapus Kunci

db.products.update(
   { sku: "unknown" },
   { $unset: { quantity: "", instock: "" } }
)
amit.bhagat