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 `rowId` field.
  • rowId: 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 `updatedAt` field.
  • updatedAt: UpdatedTime
  • # Checks for equality with the object’s `createdAt` field.
  • createdAt: CreatedTime
  • # Checks for equality with the object’s `alternativeNames` field.
  • alternativeNames: [String]
  • }