OBJECT

CreateDocumentTagPayload

The output of our createDocumentTag mutation.

link GraphQL Schema definition

  • type CreateDocumentTagPayload {
  • # 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
  • documentTag: DocumentTag
  • # Our root query field type. Allows us to run any query from our mutation payload.
  • query: Query
  • # Reads a single `ClientCompanyTag` that is related to this `DocumentTag`.
  • clientCompanyTagByClientCompanyTagRowId: ClientCompanyTag!
  • # Reads a single `Document` that is related to this `DocumentTag`.
  • documentByDocumentRowId: Document!
  • # An edge for our `DocumentTag`. May be used by Relay 1.
  • #
  • # Arguments
  • # orderBy: The method to use when ordering `DocumentTag`.
  • documentTagEdge(orderBy: [DocumentTagsOrderBy!]): DocumentTagsEdge
  • }