INPUT_OBJECT

ImageFilter

A filter to be used against Image object types. All fields are combined with a logical ‘and.’

link GraphQL Schema definition

  • input ImageFilter {
  • # Filter by the object’s `id` field.
  • id: UUIDFilter
  • # Filter by the object’s `organizationId` field.
  • organizationId: UUIDFilter
  • # Filter by the object’s `approved` field.
  • approved: BooleanFilter
  • # Filter by the object’s `uploaded` field.
  • uploaded: BooleanFilter
  • # Filter by the object’s `annotated` field.
  • annotated: BooleanFilter
  • # Filter by the object’s `type` field.
  • type: ImageTypeFilter
  • # Filter by the object’s `label` field.
  • label: StringFilter
  • # Filter by the object’s `tags` field.
  • tags: StringListFilter
  • # Filter by the object’s `attributes` field.
  • attributes: JSONFilter
  • # Filter by the object’s `createdAt` field.
  • createdAt: DatetimeFilter
  • # Filter by the object’s `capturedBy` field.
  • capturedBy: UUIDFilter
  • # Filter by the object’s `deletedAt` field.
  • deletedAt: DatetimeFilter
  • # Filter by the object’s `autoLabeled` field.
  • autoLabeled: BooleanFilter
  • # Checks for all expressions in this list.
  • and: [ImageFilter!]
  • # Checks for any expressions in this list.
  • or: [ImageFilter!]
  • # Negates the expression.
  • not: ImageFilter
  • }