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