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