CreateActivitySector
Signature
mutation {
CreateActivitySector(label: ..., lcbftLevel: ..., localizedLabel: ...)
}
Retourne : ActivitySector!
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
label | String! | ✓ | — | — |
lcbftLevel | LcbftLevel! | ✓ | — | — |
localizedLabel | [LocalizedStringInput]! | ✓ | — | — |
Exemple
mutation {
CreateActivitySector(
label: $label
lcbftLevel: $lcbftLevel
localizedLabel: $localizedLabel
) {
id
label
localizedLabel {}
lcbftLevel {}
isDisplayed
}
}