OBJECT

DetectionItem

link GraphQL Schema definition

  • type DetectionItem implements Node {
  • # A globally unique identifier. Can be used in various places throughout the
  • # system to identify this single value.
  • nodeId: ID!
  • id: UUID!
  • label: String!
  • organizationId: UUID
  • siteId: String
  • customerId: String
  • globalId: UUID
  • type: DetectionItemType
  • attributes: String
  • # Reads and enables pagination through a set of `ImageAnnotation`.
  • #
  • # Arguments
  • # first: Only read the first `n` values of the set.
  • # last: Only read the last `n` values of the set.
  • # offset: Skip the first `n` values from our `after` cursor, an
  • # alternative to cursor
  • # based pagination. May not be used with `last`.
  • # before: Read all values in the set before (above) this cursor.
  • # after: Read all values in the set after (below) this cursor.
  • # orderBy: The method to use when ordering `ImageAnnotation`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • # filter: A filter to be used in determining which values should
  • # be returned by the collection.
  • imageAnnotationsByDetectionItemId(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [ImageAnnotationsOrderBy!],
  • condition: ImageAnnotationCondition,
  • filter: ImageAnnotationFilter
  • ): ImageAnnotationsConnection!
  • # Reads and enables pagination through a set of `ModelDetectionItem`.
  • #
  • # Arguments
  • # first: Only read the first `n` values of the set.
  • # last: Only read the last `n` values of the set.
  • # offset: Skip the first `n` values from our `after` cursor, an
  • # alternative to cursor
  • # based pagination. May not be used with `last`.
  • # before: Read all values in the set before (above) this cursor.
  • # after: Read all values in the set after (below) this cursor.
  • # orderBy: The method to use when ordering `ModelDetectionItem`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • # filter: A filter to be used in determining which values should
  • # be returned by the collection.
  • modelDetectionItemsByDetectionItemId(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [ModelDetectionItemsOrderBy!],
  • condition: ModelDetectionItemCondition,
  • filter: ModelDetectionItemFilter
  • ): ModelDetectionItemsConnection!
  • # Reads and enables pagination through a set of `Image`.
  • #
  • # Arguments
  • # first: Only read the first `n` values of the set.
  • # last: Only read the last `n` values of the set.
  • # offset: Skip the first `n` values from our `after` cursor, an
  • # alternative to cursor
  • # based pagination. May not be used with `last`.
  • # before: Read all values in the set before (above) this cursor.
  • # after: Read all values in the set after (below) this cursor.
  • # orderBy: The method to use when ordering `Image`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • # filter: A filter to be used in determining which values should
  • # be returned by the collection.
  • # includeArchived: Indicates whether archived items should be
  • # included in the results or not.
  • imagesByImageAnnotationDetectionItemIdAndImageId(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [ImagesOrderBy!],
  • condition: ImageCondition,
  • filter: ImageFilter,
  • includeArchived: IncludeArchivedOption
  • ): DetectionItemImagesByImageAnnotationDetectionItemIdAndImageIdManyToManyConnection!
  • # Reads and enables pagination through a set of `Model`.
  • #
  • # Arguments
  • # first: Only read the first `n` values of the set.
  • # last: Only read the last `n` values of the set.
  • # offset: Skip the first `n` values from our `after` cursor, an
  • # alternative to cursor
  • # based pagination. May not be used with `last`.
  • # before: Read all values in the set before (above) this cursor.
  • # after: Read all values in the set after (below) this cursor.
  • # orderBy: The method to use when ordering `Model`.
  • # condition: A condition to be used in determining which values
  • # should be returned by the collection.
  • # filter: A filter to be used in determining which values should
  • # be returned by the collection.
  • modelsByModelDetectionItemDetectionItemIdAndModelId(
  • first: Int,
  • last: Int,
  • offset: Int,
  • before: Cursor,
  • after: Cursor,
  • orderBy: [ModelsOrderBy!],
  • condition: ModelCondition,
  • filter: ModelFilter
  • ): DetectionItemModelsByModelDetectionItemDetectionItemIdAndModelIdManyToManyConnection!
  • }

link Require by