TypeDB 3.0 is live! Get started for free.

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().all().await?;

Where driver is an instance of a driver, connected to TypeDB, and "<username>" is the name of the user.

driver.users.all()

Where driver is an instance of a driver, connected to TypeDB, and "<username>" is the name of the user.

driver.users().all();

Where driver is an instance of a driver, connected to TypeDB, and "<username>" is the name of the user.

Coming soon.