Listing users
To list all users, connect to TypeDB and follow the steps below:
-
Console
-
Studio
Run the following command:
user list
Coming soon. |
To list all users programmatically:
-
Rust
-
Python
-
Java
-
Node.js
-
C#
-
C++
-
C
let user = driver.users().list().await?;
Where driver
is an instance of a driver, connected to TypeDB, and "<username>"
is the name of the user.
driver.users.list()
Where driver
is an instance of a driver, connected to TypeDB, and "<username>"
is the name of the user.
driver.users().list();
Where driver
is an instance of a driver, connected to TypeDB, and "<username>"
is the name of the user.
Coming soon. |