Available queries

Associated queryReturns multiple results
Payment
Payments✔️

Available fields

LabelTypeNotesNull
amount_paiddecimal(12,2)The sum paid in this payment
idintegerThe id of this payment
invoiceInvoiceThe invoice this payment is paying for
notesstringNotes about this payment that everyone will see✔️
payment_dateDateThe date of payment✔️
payment_methodPayment methodThe method used for the payment✔️
userUserThe user who created this payment

Example of a query

query{
  Payments{
    edges{
      node{
        amount_paid
        id
        invoice{
          id
        }
        notes
        payment_date
        payment_method{
          id
        }
        user{
          display_name
        }
      }
    }
  }
}