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
) {
# Sélectionner les champs souhaités
}
}