OBJECT

MarkDocumentsAsBookedPayload

The output of our markDocumentsAsBooked mutation.

link GraphQL Schema definition

  • type MarkDocumentsAsBookedPayload {
  • # 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
  • export: Export
  • # Our root query field type. Allows us to run any query from our mutation payload.
  • query: Query
  • # Reads a single `ClientCompany` that is related to this `Export`.
  • clientCompanyByClientCompanyRowId: ClientCompany!
  • # Reads a single `User` that is related to this `Export`.
  • userByCreatedBy: User!
  • # An edge for our `Export`. May be used by Relay 1.
  • #
  • # Arguments
  • # orderBy: The method to use when ordering `Export`.
  • exportEdge(orderBy: [ExportsOrderBy!]): ExportsEdge
  • }