INPUT_OBJECT
ModelFilter
A filter to be used against Model
object types. All fields are combined with a logical ‘and.’
link GraphQL Schema definition
- input ModelFilter {
- # Filter by the object’s `id` field.
- UUIDFilter :
- # Filter by the object’s `organizationId` field.
- UUIDFilter :
- # Filter by the object’s `type` field.
- ModelTypeFilter :
- # Filter by the object’s `status` field.
- ModelStatusFilter :
- # Filter by the object’s `label` field.
- StringFilter :
- # Filter by the object’s `tags` field.
- StringListFilter :
- # Filter by the object’s `images` field.
- UUIDListFilter :
- # Filter by the object’s `attributes` field.
- JSONFilter :
- # Filter by the object’s `createdAt` field.
- DatetimeFilter :
- # Filter by the object’s `adaptive` field.
- BooleanFilter :
- # Filter by the object’s `autoDeploy` field.
- BooleanFilter :
- # Filter by the object’s `excludeAutoLabeledImages` field.
- BooleanFilter :
- # Checks for all expressions in this list.
- ModelFilter!] : [
- # Checks for any expressions in this list.
- ModelFilter!] : [
- # Negates the expression.
- ModelFilter :
- }