OBJECT

UpdateInvoicePurchasePayload

The output of our updateInvoicePurchase mutation.

link GraphQL Schema definition

  • type UpdateInvoicePurchasePayload {
  • # 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
  • invoice: Invoice
  • # Our root query field type. Allows us to run any query from our mutation payload.
  • query: Query
  • # Reads a single `Document` that is related to this `Invoice`.
  • documentByDocumentRowId: Document!
  • # Reads a single `PartnerCompany` that is related to this `Invoice`.
  • partnerCompanyByPartnerCompanyRowId: PartnerCompany
  • # Reads a single `CompanyLocation` that is related to this `Invoice`.
  • companyLocationByPartnerCompanyLocationRowId: CompanyLocation
  • # Reads a single `Invoice` that is related to this `Invoice`.
  • invoiceByCreditMemoForInvoiceDocumentRowId: Invoice
  • # Reads a single `BankAccount` that is related to this `Invoice`.
  • bankAccountByPayFromBankAccountRowId: BankAccount
  • # An edge for our `Invoice`. May be used by Relay 1.
  • #
  • # Arguments
  • # orderBy: The method to use when ordering `Invoice`.
  • invoiceEdge(orderBy: [InvoicesOrderBy!]): InvoicesEdge
  • }