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