OBJECT

NamespaceUser

A namespace user.

link GraphQL Schema definition

  • type NamespaceUser {
  • # The roles assigned to the namespace user.
  • roles: [String]
  • # The namespace with which the user is associated.
  • namespace: Namespace
  • # The ID of the namespace user.
  • id: ID!
  • # The first name of the namespace user.
  • firstName: String
  • # The last name of the namespace user.
  • lastName: String
  • # The e-mail address of the namespace user.
  • email: String
  • # The parent company with which the namespace and user are associated.
  • company: Company
  • # The user.
  • user: User
  • # Set to true to enable admin priveldge; false otherwise.
  • admin: Boolean
  • }