OBJECT
CreateImageAnnotationPayload
The output of our create ImageAnnotation mutation.
link GraphQL Schema definition
- type CreateImageAnnotationPayload {
- # The exact same `clientMutationId` that was provided in the mutation input,
- # unchanged and unused. May be used by a client to track mutations.
- : String
- # The `ImageAnnotation` that was created by this mutation.
- : ImageAnnotation
- # Our root query field type. Allows us to run any query from our mutation payload.
- : Query
- # Reads a single `DetectionItem` that is related to this `ImageAnnotation`.
- : DetectionItem
- # Reads a single `Image` that is related to this `ImageAnnotation`.
- : Image
- # An edge for our `ImageAnnotation`. May be used by Relay 1.
- #
- # Arguments
- # orderBy: The method to use when ordering `ImageAnnotation`.
- (: [ImageAnnotationsOrderBy!]): ImageAnnotationsEdge
- }