OBJECT

mnCreateImageAnnotationPayload

The output of our many create ImageAnnotation mutation.

link GraphQL Schema definition

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