Skip to main content

CreateEntityPropertyAddress

Stable

Signature

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

Retourne : EntityPropertyAddress

Arguments

NomTypeRequisDéfautDescription
entityNameEntityName!
technicalCodeString!
nameString!
dataStrategyDefinitionAny
computedPropertyComputedPropertyInput

Exemple

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