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