OBJECT
CreateDetectionItemPayload
The output of our create DetectionItem mutation.
link GraphQL Schema definition
- type CreateDetectionItemPayload {
- # 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 `DetectionItem` that was created by this mutation.
- : DetectionItem
- # Our root query field type. Allows us to run any query from our mutation payload.
- : Query
- # An edge for our `DetectionItem`. May be used by Relay 1.
- #
- # Arguments
- # orderBy: The method to use when ordering `DetectionItem`.
- (: [DetectionItemsOrderBy!]): DetectionItemsEdge
- }