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