Delete a item from a collection
db.collection("users").deleteOne({ banned: false, accountCreated: "13/02/2023" }).then(() => { //Item deleted from db; }).catch(error => { console.log("error:", error); });
filter
The filter used to select the item to remove
Last updated 2 years ago
Was this helpful?