Skip to main content

DisplayCountry

Stable

Signature

mutation {
DisplayCountry(countryId: ..., isDisplayed: ...)
}

Retourne : Country!

Arguments

NomTypeRequisDéfautDescription
countryIdID!
isDisplayedBoolean!

Exemple

mutation {
DisplayCountry(
countryId: $countryId
isDisplayed: $isDisplayed
) {
id
country
countryCode
countryShort
sortIndex
countryRiskCode {}
isDisplayed
}
}