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