OBJECT

UpdateDocumentPayload

The output of our updateDocument mutation.

link GraphQL Schema definition

  • type UpdateDocumentPayload {
  • # 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
  • document: Document
  • # Our root query field type. Allows us to run any query from our mutation payload.
  • query: Query
  • # Reads a single `DocumentCategory` that is related to this `Document`.
  • documentCategoryByCategoryRowId: DocumentCategory!
  • # Reads a single `ClientCompany` that is related to this `Document`.
  • clientCompanyByClientCompanyRowId: ClientCompany!
  • # Reads a single `Document` that is related to this `Document`.
  • documentByBaseDocumentRowId: Document
  • # Reads a single `DocumentWorkflowStep` that is related to this `Document`.
  • documentWorkflowStepByWorkflowStepRowId: DocumentWorkflowStep
  • # Reads a single `User` that is related to this `Document`.
  • userByImportedBy: User!
  • # Reads a single `User` that is related to this `Document`.
  • userByRearrangedBy: User
  • # Reads a single `DeletedDocument` that is related to this `Document`.
  • deletedDocumentBySupersedes: DeletedDocument
  • # Reads a single `User` that is related to this `Document`.
  • userByPagesConfirmedBy: User
  • # An edge for our `Document`. May be used by Relay 1.
  • #
  • # Arguments
  • # orderBy: The method to use when ordering `Document`.
  • documentEdge(orderBy: [DocumentsOrderBy!]): DocumentsEdge
  • }