OBJECT
Image
link GraphQL Schema definition
- type Image implements Node {
- # A globally unique identifier. Can be used in various places throughout the
- # system to identify this single value.
- ID! :
- UUID! :
- UUID! :
- Boolean :
- Boolean :
- Boolean :
- ImageType :
- String :
- String] : [
- JSON :
- Datetime :
- UUID :
- Datetime :
- # Reads a single `Server` that is related to this `Image`.
- Server :
- # 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.
- (
- Int, :
- Int, :
- Int, :
- Cursor, :
- Cursor, :
- ImageAnnotationsOrderBy!], : [
- ImageAnnotationCondition, :
- ImageAnnotationFilter :
- ): ImageAnnotationsConnection!
- Boolean :
- # Reads and enables pagination through a set of `DetectionItem`.
- #
- # 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 `DetectionItem`.
- # 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.
- (
- Int, :
- Int, :
- Int, :
- Cursor, :
- Cursor, :
- DetectionItemsOrderBy!], : [
- DetectionItemCondition, :
- DetectionItemFilter :
- ): ImageDetectionItemsByImageAnnotationImageIdAndDetectionItemIdManyToManyConnection!
- String! :
- String! :
- }
link Require by
- CreateImageAnnotationPayloadThe output of our create `ImageAnnotation` mutation.
- CreateImagePayloadThe output of our create `Image` mutation.
- DeleteImageAnnotationPayloadThe output of our delete `ImageAnnotation` mutation.
- DeleteImagePayloadThe output of our delete `Image` mutation.
- DetectionItemImagesByImageAnnotationDetectionItemIdAndImageIdManyToManyConnectionA connection to a list of `Image` values, with data from `ImageAnnotation`.
- DetectionItemImagesByImageAnnotationDetectionItemIdAndImageIdManyToManyEdgeA `Image` edge in the connection, with data from `ImageAnnotation`.
- ImageAnnotationnull
- ImagesConnectionA connection to a list of `Image` values.
- ImagesEdgeA `Image` edge in the connection.
- mnCreateImageAnnotationPayloadThe output of our many create `ImageAnnotation` mutation.
- mnCreateImagePayloadThe output of our many create `Image` mutation.
- mnDeleteImageAnnotationPayloadThe output of our delete mn `ImageAnnotation` mutation.
- mnDeleteImagePayloadThe output of our delete mn `Image` mutation.
- mnUpdateImageAnnotationPayloadThe output of our update mn `ImageAnnotation` mutation.
- mnUpdateImagePayloadThe output of our update mn `Image` mutation.
- QueryThe root query type which gives access points into the data universe.
- UpdateImageAnnotationPayloadThe output of our update `ImageAnnotation` mutation.
- UpdateImagePayloadThe output of our update `Image` mutation.