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 | — | — |
Exemple
mutation {
UpdateEntityPropertyNumber(
entityPropertyId: $entityPropertyId
name: $name
numPrecision: $numPrecision
) {
# Sélectionner les champs souhaités
}
}