Available queries
Associated query | Returns multiple results |
---|---|
Payment | |
Payments | ✔️ |
Available fields
Label | Type | Notes | Null |
---|---|---|---|
amount_paid | decimal(12,2) | The sum paid in this payment | |
id | integer | The id of this payment | |
invoice | Invoice | The invoice this payment is paying for | |
notes | string | Notes about this payment that everyone will see | ✔️ |
payment_date | Date | The date of payment | ✔️ |
payment_method | Payment method | The method used for the payment | ✔️ |
user | User | The 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
}
}
}
}
}