INPUT_OBJECT
ModelCondition
A condition to be used against Model object types. All fields are tested for equality and combined with a logical ‘and.’
link GraphQL Schema definition
- input ModelCondition {
- # Checks for equality with the object’s `id` field.
- : UUID
- # Checks for equality with the object’s `organizationId` field.
- : UUID
- # Checks for equality with the object’s `type` field.
- : ModelType
- # Checks for equality with the object’s `status` field.
- : ModelStatus
- # Checks for equality with the object’s `label` field.
- : String
- # Checks for equality with the object’s `tags` field.
- : [String]
- # Checks for equality with the object’s `images` field.
- : [UUID]
- # Checks for equality with the object’s `attributes` field.
- : JSON
- # Checks for equality with the object’s `createdAt` field.
- : Datetime
- # Checks for equality with the object’s `adaptive` field.
- : Boolean
- # Checks for equality with the object’s `autoDeploy` field.
- : Boolean
- # Checks for equality with the object’s `excludeAutoLabeledImages` field.
- : Boolean
- }