CreateEntityPropertyChoiceMultiple
Signature
mutation {
CreateEntityPropertyChoiceMultiple(entityName: ..., technicalCode: ..., name: ...)
}
Retourne : EntityPropertyChoiceMultiple
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
entityName | EntityName! | ✓ | — | — |
technicalCode | String! | ✓ | — | — |
name | String! | ✓ | — | — |
dataStrategyDefinition | Any | — | — | |
displayType | EntityPropertyChoiceMultipleDisplayType | — | — | |
choiceType | EntityPropertyChoiceType | — | — | |
choiceDefinition | String | — | — | |
referentialName | EntityPropertyReferential | — | — | |
computedProperty | ComputedPropertyInput | — | — |
Exemple
mutation {
CreateEntityPropertyChoiceMultiple(
entityName: $entityName
technicalCode: $technicalCode
name: $name
) {
id
type {}
entityName {}
technicalCode
code
name
dataStrategy {}
dataStrategyDefinition
createdBy
createdAt
editable
specificTreatment {}
isComputed
resetsStatusOnValueChange
algorithm {}
validators
displayType {}
choiceType {}
choiceDefinition
referentialName {}
referentialChoices {}
}
}