UpdateBankAccount
Signature
mutation {
UpdateBankAccount(bankAccountId: ..., bankAccount: ...)
}
Retourne : BankAccount!
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
bankAccountId | ID! | ✓ | — | — |
bankAccount | BankAccountInput! | ✓ | — | — |
Exemple
mutation {
UpdateBankAccount(
bankAccountId: $bankAccountId
bankAccount: $bankAccount
) {
# Sélectionner les champs souhaités
}
}