
sec:remove-role-from-roles( $role-name as xs:string ) as empty-sequence()
  Removes references to the role ($role-name) from all other roles.
  If a role with name equal to $role-name is not found, an error is 
  returned.
  If the current user is limited to granting only his/her roles,
  and $role-name is not a subset of the current user's roles, then an 
  error is returned.
  
| Parameters | |
|---|---|
| role-name | The name of a role. | 
http://marklogic.com/xdmp/privileges/remove-role-from-usershttp://marklogic.com/xdmp/privileges/grant-all-roles orhttp://marklogic.com/xdmp/privileges/grant-my-roles
  This function must be executed against the security database.
(: execute this against the security database :)
xquery version "1.0-ml";
import module namespace sec="http://marklogic.com/xdmp/security" at 
    "/MarkLogic/security.xqy";
  
sec:remove-role-from-roles("Developer")
(: Removes the "Developer" role from all other roles. :) 
   
  
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.