UpdateLegalStatus
Signature
mutation {
UpdateLegalStatus(legalStatusId: ..., label: ..., type: ..., localizedLabel: ...)
}
Retourne : LegalStatus!
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
legalStatusId | ID! | ✓ | — | — |
label | String! | ✓ | — | — |
type | LegalStatusType! | ✓ | — | — |
localizedLabel | [LocalizedStringInput]! | ✓ | — | — |
Exemple
mutation {
UpdateLegalStatus(
legalStatusId: $legalStatusId
label: $label
type: $type
localizedLabel: $localizedLabel
) {
# Sélectionner les champs souhaités
}
}