SetInvestmentPaymentDate
Signature
mutation {
SetInvestmentPaymentDate(investmentId: ..., paymentDate: ..., withEmail: ...)
}
Retourne : Investment
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
investmentId | ID! | ✓ | — | — |
paymentDate | Date! | ✓ | — | — |
documentGeneration | DocumentGenerationInput | — | — | |
withEmail | Boolean! | ✓ | — | — |
Exemple
mutation {
SetInvestmentPaymentDate(
investmentId: $investmentId
paymentDate: $paymentDate
withEmail: $withEmail
) {
# Sélectionner les champs souhaités
}
}