CreateEntityPropertyRanking
Signature
mutation {
CreateEntityPropertyRanking(entityName: ..., technicalCode: ..., name: ..., choiceType: ...)
}
Retourne : EntityPropertyRanking
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
entityName | EntityName! | ✓ | — | — |
technicalCode | String! | ✓ | — | — |
name | String! | ✓ | — | — |
dataStrategyDefinition | Any | — | — | |
choiceType | EntityPropertyChoiceType! | ✓ | — | — |
choiceDefinition | String | — | — | |
referentialName | EntityPropertyReferential | — | — | |
computedProperty | ComputedPropertyInput | — | — |
Exemple
mutation {
CreateEntityPropertyRanking(
entityName: $entityName
technicalCode: $technicalCode
name: $name
choiceType: $choiceType
) {
id
type {}
entityName {}
technicalCode
code
name
dataStrategy {}
dataStrategyDefinition
createdBy
createdAt
editable
specificTreatment {}
isComputed
resetsStatusOnValueChange
algorithm {}
validators
choiceType {}
choiceDefinition
referentialName {}
referentialChoices {}
}
}