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.
  • id: UUIDFilter
  • # Filter by the object’s `organizationId` field.
  • organizationId: UUIDFilter
  • # Filter by the object’s `type` field.
  • type: ModelTypeFilter
  • # Filter by the object’s `status` field.
  • status: ModelStatusFilter
  • # Filter by the object’s `label` field.
  • label: StringFilter
  • # Filter by the object’s `tags` field.
  • tags: StringListFilter
  • # Filter by the object’s `images` field.
  • images: UUIDListFilter
  • # Filter by the object’s `attributes` field.
  • attributes: JSONFilter
  • # Filter by the object’s `createdAt` field.
  • createdAt: DatetimeFilter
  • # Filter by the object’s `adaptive` field.
  • adaptive: BooleanFilter
  • # Filter by the object’s `autoDeploy` field.
  • autoDeploy: BooleanFilter
  • # Filter by the object’s `excludeAutoLabeledImages` field.
  • excludeAutoLabeledImages: BooleanFilter
  • # Checks for all expressions in this list.
  • and: [ModelFilter!]
  • # Checks for any expressions in this list.
  • or: [ModelFilter!]
  • # Negates the expression.
  • not: ModelFilter
  • }