OBJECT

CreateDocumentCommentPayload

The output of our createDocumentComment mutation.

link GraphQL Schema definition

  • type CreateDocumentCommentPayload {
  • # 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
  • documentComment: DocumentComment
  • # Our root query field type. Allows us to run any query from our mutation payload.
  • query: Query
  • # Reads a single `Document` that is related to this `DocumentComment`.
  • documentByDocumentRowId: Document!
  • # Reads a single `User` that is related to this `DocumentComment`.
  • userByCommentedBy: User!
  • # An edge for our `DocumentComment`. May be used by Relay 1.
  • #
  • # Arguments
  • # orderBy: The method to use when ordering `DocumentComment`.
  • documentCommentEdge(orderBy: [DocumentCommentsOrderBy!]): DocumentCommentsEdge
  • }