OBJECT
UpdateInvoiceOrderDatePayload
The output of our updateInvoiceOrderDate mutation.
link GraphQL Schema definition
- type UpdateInvoiceOrderDatePayload {
- # The exact same `clientMutationId` that was provided in the mutation input,
- # unchanged and unused. May be used by a client to track mutations.
- : String
- : Invoice
- # Our root query field type. Allows us to run any query from our mutation payload.
- : Query
- # Reads a single `Document` that is related to this `Invoice`.
- : Document!
- # Reads a single `PartnerCompany` that is related to this `Invoice`.
- : PartnerCompany
- # Reads a single `CompanyLocation` that is related to this `Invoice`.
- : CompanyLocation
- # Reads a single `Invoice` that is related to this `Invoice`.
- : Invoice
- # Reads a single `BankAccount` that is related to this `Invoice`.
- : BankAccount
- # An edge for our `Invoice`. May be used by Relay 1.
- #
- # Arguments
- # orderBy: The method to use when ordering `Invoice`.
- (: [InvoicesOrderBy!]): InvoicesEdge
- }