- Reference >
mongoShell Methods >- Role Management Methods >
- db.grantRolesToRole()
db.grantRolesToRole()¶
On this page
Definition¶
-
db.grantRolesToRole(rolename, roles, writeConcern)¶ Grants roles to a user-defined role.
The
grantRolesToRolemethod uses the following syntax:The
grantRolesToRolemethod takes the following arguments:Parameter Type Description rolenamestring The name of the role to which to grant sub roles. rolesarray An array of roles from which to inherit. writeConcerndocument Optional. The level of write concern for the modification. The writeConcerndocument takes the same fields as thegetLastErrorcommand.In the
rolesfield, you can specify both built-in roles and user-defined role.To specify a role that exists in the same database where
db.grantRolesToRole()runs, you can either specify the role with the name of the role:Or you can specify the role with a document, as in:
To specify a role that exists in a different database, specify the role with a document.
The
db.grantRolesToRole()method wraps thegrantRolesToRolecommand.
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 role
created on the admin database can inherit privileges from roles in
any database.
Example¶
The following grantRolesToRole() operation updates the
productsReaderWriter role in the products database to inherit the privileges of productsReader role: