INPUT_OBJECT

OrgUserCondition

A condition to be used against OrgUser object types. All fields are tested for equality and combined with a logical ‘and.’

link GraphQL Schema definition

  • input OrgUserCondition {
  • # Checks for equality with the object’s `userId` field.
  • userId: UUID
  • # Checks for equality with the object’s `organizationId` field.
  • organizationId: UUID
  • # Checks for equality with the object’s `admin` field.
  • admin: Boolean
  • # Checks for equality with the object’s `createdAt` field.
  • createdAt: Datetime
  • # Checks for equality with the object’s `phoneNumber` field.
  • phoneNumber: String
  • # Checks for equality with the object’s `firstName` field.
  • firstName: String
  • # Checks for equality with the object’s `lastName` field.
  • lastName: String
  • # Checks for equality with the object’s `jobRole` field.
  • jobRole: String
  • # Checks for equality with the object’s `country` field.
  • country: String
  • # Checks for equality with the object’s `email` field.
  • email: String
  • }