Type alias ArangoUser

ArangoUser: {
    active: boolean;
    extra: Record<string, any>;
    user: string;
}

Properties of an ArangoDB user object.

Type declaration

  • active: boolean

    Whether the ArangoDB user account is enabled and can authenticate.

  • extra: Record<string, any>

    Additional information to store about this user.

  • user: string

    ArangoDB username of the user.

Generated using TypeDoc