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.
- : UUID
- # Checks for equality with the object’s `name` field.
- : String
- # Checks for equality with the object’s `brandName` field.
- : String
- # Checks for equality with the object’s `legalForm` field.
- : LegalForm
- # Checks for equality with the object’s `founded` field.
- : Date
- # Checks for equality with the object’s `dissolved` field.
- : Date
- # Checks for equality with the object’s `updatedAt` field.
- : UpdatedTime
- # Checks for equality with the object’s `createdAt` field.
- : CreatedTime
- # Checks for equality with the object’s `alternativeNames` field.
- : [String]
- }