Role-Based Access Control (RBAC) allows you to manage users, roles, and permissions to control access to your database.
GQL// Create a role CREATE ROLE data_analyst // Create a user CREATE USER alice PASSWORD 'secure_password_123' // Grant a permission to the role GRANT READ ON GRAPH production TO ROLE data_analyst // Assign the role to the user GRANT ROLE data_analyst TO USER alice
See the following pages for detailed information: