INPUT_OBJECT

CompanyCondition

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

link GraphQL Schema definition

  • input CompanyCondition {
  • # Checks for equality with the object’s `id` field.
  • id: UUID
  • # Checks for equality with the object’s `name` field.
  • name: String
  • # Checks for equality with the object’s `brandName` field.
  • brandName: String
  • # Checks for equality with the object’s `legalForm` field.
  • legalForm: LegalForm
  • # Checks for equality with the object’s `founded` field.
  • founded: Date
  • # Checks for equality with the object’s `dissolved` field.
  • dissolved: Date
  • # Checks for equality with the object’s `street` field.
  • street: String
  • # Checks for equality with the object’s `city` field.
  • city: String
  • # Checks for equality with the object’s `zip` field.
  • zip: String
  • # Checks for equality with the object’s `country` field.
  • country: CountryCode
  • # Checks for equality with the object’s `ceo` field.
  • ceo: String
  • # Checks for equality with the object’s `phone` field.
  • phone: String
  • # Checks for equality with the object’s `email` field.
  • email: EmailAddr
  • # Checks for equality with the object’s `website` field.
  • website: String
  • # Checks for equality with the object’s `registrationNr` field.
  • registrationNr: String
  • # Checks for equality with the object’s `vatId` field.
  • vatId: VatId
  • # Checks for equality with the object’s `updatedAt` field.
  • updatedAt: UpdatedTime
  • # Checks for equality with the object’s `createdAt` field.
  • createdAt: CreatedTime
  • }