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