Skip to main content

UpdateCountry

Stable

Signature

mutation {
UpdateCountry(countryId: ..., label: ..., countryRiskCode: ..., sortIndex: ...)
}

Retourne : Country!

Arguments

NomTypeRequisDéfautDescription
countryIdID!
labelString!
countryRiskCodeCountryRiskCode!
sortIndexInt!

Exemple

mutation {
UpdateCountry(
countryId: $countryId
label: $label
countryRiskCode: $countryRiskCode
sortIndex: $sortIndex
) {
# Sélectionner les champs souhaités
}
}