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