OBJECT

User

A user.

link GraphQL Schema definition

  • type User {
  • # The user ID.
  • id: ID!
  • # The first name of the user.
  • firstName: String
  • # The last name of the user.
  • lastName: String
  • # The e-mail address of the user.
  • email: String
  • # The parent company to which the user belongs.
  • company: Company
  • # A collection of namespaces.
  • namespaces: [Namespace]
  • # A collection of namespace users.
  • namespaceUsers: [NamespaceUser]
  • }