Docs Menu

Docs HomeDevelop ApplicationsMongoDB Manual

db.dropAllRoles()

On this page

  • Definition
  • Behavior
  • Required Access
  • Example
db.dropAllRoles( writeConcern )

Deletes all user-defined roles on the database where you run the method.

Warning

The db.dropAllRoles() method removes all user-defined roles from the database.

The db.dropAllRoles() method takes the following argument:

Field
Type
Description
writeConcern
document

Optional. The level of write concern for the operation. See Write Concern Specification.

Returns:The number of user-defined roles dropped.

The db.dropAllRoles() method wraps the dropAllRolesFromDatabase command.

If run on a replica set, db.dropAllRoles() is executed using "majority" write concern by default.

You must have the dropRole action on a database to drop a role from that database.

The following operations drop all user-defined roles from the products database and uses a write concern of majority.

use products
db.dropAllRoles( { w: "majority" } )

The method returns the number of roles dropped:

4
←  db.dropRole()db.getRole() →