UpdateInvestmentAmount
Signature
mutation {
UpdateInvestmentAmount(investmentId: ..., amount: ...)
}
Retourne : Investment!
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
investmentId | ID! | ✓ | — | — |
amount | Amount! | ✓ | — | — |
consultancyFeesPercentage | Float | — | — |
Exemple
mutation {
UpdateInvestmentAmount(
investmentId: $investmentId
amount: $amount
) {
# Sélectionner les champs souhaités
}
}