- Reference >
mongoShell Methods >- Role Management Methods >
- db.dropAllRoles()
db.dropAllRoles()¶
On this page
Definition¶
-
db.dropAllRoles(writeConcern)¶ Deletes all user-defined roles on the database where you run the method.
Warning
The
dropAllRolesmethod removes all user-defined roles from the database.Important
mongoShell MethodThis page documents a
mongomethod. This is not the documentation for database commands or language-specific drivers, such as Node.js. To use the database command, see thedropAllRolesFromDatabasecommand.For MongoDB API drivers, refer to the language-specific MongoDB driver documentation.
The
db.dropAllRoles()method takes the following argument:Field Type Description writeConcerndocument Optional. The level of write concern for the removal operation. The writeConcerndocument takes the same fields as thegetLastErrorcommand.Returns: The number of user-defined roles dropped.
Behavior¶
Replica set¶
If run on a replica set, db.dropAllRoles() is executed using
"majority" write concern by default.
Example¶
The following operations drop all user-defined roles from the products database and uses a
write concern of majority.
The method returns the number of roles dropped: