Skip to main content

CreateEntityPropertyBoolean

Stable

Signature

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

Retourne : EntityPropertyBoolean

Arguments

NomTypeRequisDéfautDescription
entityNameEntityName!
technicalCodeString!
nameString!
dataStrategyDefinitionAny
computedPropertyComputedPropertyInput

Exemple

mutation {
CreateEntityPropertyBoolean(
entityName: $entityName
technicalCode: $technicalCode
name: $name
) {
id
type {}
entityName {}
technicalCode
code
name
dataStrategy {}
dataStrategyDefinition
createdBy
createdAt
editable
specificTreatment {}
isComputed
resetsStatusOnValueChange
algorithm {}
validators
referentialChoices {}
}
}