db.grantRolesToRole()

Definition

  • db.grantRolesToRole(rolename, roles, writeConcern)
  • Grants roles to a user-defined role.

The grantRolesToRole method uses the following syntax:

  1. db.grantRolesToRole( "<rolename>", [ <roles> ], { <writeConcern> } )

The grantRolesToRole method takes the following arguments:

ParameterTypeDescriptionrolenamestringThe name of the role to which to grant sub roles.rolesarrayAn array of roles from which to inherit.writeConcerndocumentOptional. The level of write concern for themodification. The writeConcern document takes the samefields as the getLastError command.

In the roles field, you can specify bothbuilt-in roles and user-definedroles.

To specify a role that exists in the same database wheredb.grantRolesToRole() runs, you can either specify the role with the name ofthe role:

  1. "readWrite"

Or you can specify the role with a document, as in:

  1. { role: "<role>", db: "<database>" }

To specify a role that exists in a different database, specify the rolewith a document.

The db.grantRolesToRole() method wraps thegrantRolesToRole command.

Behavior

Replica set

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

Scope

A role can inherit privileges from other roles in its database. A rolecreated on the admin database can inherit privileges from roles inany database.

Required Access

You must have the grantRoleaction on a database to grant a role on that database.

Example

The following grantRolesToRole() operation updates theproductsReaderWriter role in the products database to inherit the privileges of productsReader role:

  1. use products
  2. db.grantRolesToRole(
  3. "productsReaderWriter",
  4. [ "productsReader" ],
  5. { w: "majority" , wtimeout: 5000 }
  6. )