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