Skip to main content

CreateEntityPropertyChoiceUnique

Stable

Signature

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

Retourne : EntityPropertyChoiceUnique

Arguments

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

Exemple

mutation {
CreateEntityPropertyChoiceUnique(
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 {}
}
}