(â ) SHOW PRIVILEGES
SHOW PRIVILEGES AS COMMANDS
List all privileges in the system as Cypher commands.
SHOW PRIVILEGES
List all privileges in the system, and the roles that they are assigned to.
SHOW PRIVILEGES
YIELD role, action, access
WHERE role = 'my\_role'
List information about privileges, filtered by role, action and access and further refined by the name of the role.
SHOW ROLE my_role PRIVILEGES AS COMMANDS
List all privileges assigned to a role as Cypher commands.
SHOW ROLE my_role, my_second_role PRIVILEGES AS COMMANDS
List all privileges assigned to each of the multiple roles as Cypher commands.
SHOW USER alice PRIVILEGES AS COMMANDS
List all privileges of a user, and the role that they are assigned to as Cypher commands.
SHOW USER PRIVILEGES AS COMMANDS
List all privileges of the currently logged in user, and the role that they are assigned to as Cypher commands.
Comments