UpdateCapitalCallAmount
Signature
mutation {
UpdateCapitalCallAmount(capitalCallId: ..., rawAmount: ..., withEmail: ...)
}
Retourne : CapitalCall
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
capitalCallId | ID! | ✓ | — | — |
rawAmount | Int! | ✓ | — | — |
withEmail | Boolean! | ✓ | — | — |
Exemple
mutation {
UpdateCapitalCallAmount(
capitalCallId: $capitalCallId
rawAmount: $rawAmount
withEmail: $withEmail
) {
# Sélectionner les champs souhaités
}
}