GraphQL OBJECT

UserAccount

Account information for a specific user account.

link Definition

  • type UserAccount {
  • # Client to whose organization the user belongs.
  • client: Client @deprecated( reason: "Use "clients" instead to get all clients of the user." )
  • # Clients to whose organization the user belongs.
  • clients: [Client]
  • # Contact information for the user.
  • contact: Contact
  • # Department information for the user.
  • department: Department
  • # Unique ID of the user.
  • id: Int!
  • # True if the user is a Cleverbridge user.
  • isCleverbridgeUser: Boolean
  • # True if the user is a multi client user.
  • isMultiClientUser: Boolean
  • # Main client account the user belongs to.
  • mainClient: Client
  • # Office information for the user.
  • office: Office
  • # Unique name of the user.
  • userName: String
  • # Comma separated list of Client IDs associated with the user
  • clientIds: String
  • }

link Required by