DatabaseMongoDBDeleteOn this pageDeletedeleteOne()Syntax - deleteOne(filter)Deletes the first document matching the filterdb.games.deleteOne({ _id: 30 })deleteMany()Same as deleteOne(), but deletes ALL documents matching the filterdb.games.deleteMany({ platform: "Orion" })