DisplayCountry
Signature
mutation {
DisplayCountry(countryId: ..., isDisplayed: ...)
}
Retourne : Country!
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
countryId | ID! | ✓ | — | — |
isDisplayed | Boolean! | ✓ | — | — |
Exemple
mutation {
DisplayCountry(
countryId: $countryId
isDisplayed: $isDisplayed
) {
# Sélectionner les champs souhaités
}
}