UpdateCountry
Signature
mutation {
UpdateCountry(countryId: ..., label: ..., countryRiskCode: ..., sortIndex: ...)
}
Retourne : Country!
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
countryId | ID! | ✓ | — | — |
label | String! | ✓ | — | — |
countryRiskCode | CountryRiskCode! | ✓ | — | — |
sortIndex | Int! | ✓ | — | — |
Exemple
mutation {
UpdateCountry(
countryId: $countryId
label: $label
countryRiskCode: $countryRiskCode
sortIndex: $sortIndex
) {
# Sélectionner les champs souhaités
}
}