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