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