OBJECT

CreateModelDetectionItemPayload

The output of our create ModelDetectionItem mutation.

link GraphQL Schema definition

  • type CreateModelDetectionItemPayload {
  • # 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 `ModelDetectionItem` that was created by this mutation.
  • modelDetectionItem: ModelDetectionItem
  • # Our root query field type. Allows us to run any query from our mutation payload.
  • query: Query
  • # Reads a single `Model` that is related to this `ModelDetectionItem`.
  • modelByModelId: Model
  • # Reads a single `DetectionItem` that is related to this `ModelDetectionItem`.
  • detectionItemByDetectionItemId: DetectionItem
  • # An edge for our `ModelDetectionItem`. May be used by Relay 1.
  • #
  • # Arguments
  • # orderBy: The method to use when ordering `ModelDetectionItem`.
  • modelDetectionItemEdge(
  • orderBy: [ModelDetectionItemsOrderBy!]
  • ): ModelDetectionItemsEdge
  • }