UpdateEntityPropertyBoolean
Signature
mutation {
UpdateEntityPropertyBoolean(entityPropertyId: ..., name: ...)
}
Retourne : EntityPropertyBoolean
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
entityPropertyId | ID! | ✓ | — | — |
name | String! | ✓ | — | — |
dataStrategyDefinition | Any | — | — | |
computedProperty | ComputedPropertyInput | — | — | |
resetsStatusOnValueChange | Boolean | — | — |
Exemple
mutation {
UpdateEntityPropertyBoolean(
entityPropertyId: $entityPropertyId
name: $name
) {
id
type {}
entityName {}
technicalCode
code
name
dataStrategy {}
dataStrategyDefinition
createdBy
createdAt
editable
specificTreatment {}
isComputed
resetsStatusOnValueChange
algorithm {}
validators
referentialChoices {}
}
}