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
) {
id
label
localizedLabel {}
type {}
isFund
isPersonal
isDisplayed
}
}