MongoDB Mongoose Update Löschen Sie Schlüssel

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