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