UpdateActivitySector
Signature
mutation {
UpdateActivitySector(activitySectorId: ..., label: ..., lcbftLevel: ..., localizedLabel: ...)
}
Retourne : ActivitySector!
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
activitySectorId | ID! | ✓ | — | — |
label | String! | ✓ | — | — |
lcbftLevel | LcbftLevel! | ✓ | — | — |
localizedLabel | [LocalizedStringInput]! | ✓ | — | — |
Exemple
mutation {
UpdateActivitySector(
activitySectorId: $activitySectorId
label: $label
lcbftLevel: $lcbftLevel
localizedLabel: $localizedLabel
) {
# Sélectionner les champs souhaités
}
}