Skip to main content

CreateEntityPropertyChoiceMultiple

Stable

Signature

mutation {
CreateEntityPropertyChoiceMultiple(entityName: ..., technicalCode: ..., name: ...)
}

Retourne : EntityPropertyChoiceMultiple

Arguments

NomTypeRequisDéfautDescription
entityNameEntityName!
technicalCodeString!
nameString!
dataStrategyDefinitionAny
displayTypeEntityPropertyChoiceMultipleDisplayType
choiceTypeEntityPropertyChoiceType
choiceDefinitionString
referentialNameEntityPropertyReferential
computedPropertyComputedPropertyInput

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 {}
}
}