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