INPUT_OBJECT

UserCondition

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

link GraphQL Schema definition

  • input UserCondition {
  • # Checks for equality with the object’s `id` field.
  • id: UUID
  • # Checks for equality with the object’s `email` field.
  • email: EmailAddr
  • # Checks for equality with the object’s `title` field.
  • title: 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 `companyId` field.
  • companyId: UUID
  • # Checks for equality with the object’s `updatedAt` field.
  • updatedAt: UpdatedTime
  • # Checks for equality with the object’s `createdAt` field.
  • createdAt: CreatedTime
  • }