OBJECT

OrgUser

link GraphQL Schema definition

  • type OrgUser implements Node {
  • # A globally unique identifier. Can be used in various places throughout the
  • # system to identify this single value.
  • nodeId: ID!
  • userId: UUID!
  • organizationId: UUID
  • admin: Boolean
  • createdAt: Datetime
  • phoneNumber: String
  • firstName: String
  • lastName: String
  • jobRole: String
  • country: String
  • email: String
  • # Reads a single `Organization` that is related to this `OrgUser`.
  • organizationByOrganizationId: Organization
  • }