SetInvoicePaymentDate
Signature
mutation {
SetInvoicePaymentDate(invoiceId: ..., date: ..., withEmail: ...)
}
Retourne : Invoice
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
invoiceId | ID! | ✓ | — | — |
date | Date! | ✓ | — | — |
withEmail | Boolean! | ✓ | — | — |
Exemple
mutation {
SetInvoicePaymentDate(
invoiceId: $invoiceId
date: $date
withEmail: $withEmail
) {
# Sélectionner les champs souhaités
}
}