CreateEntityPropertyRankingBacklog
Signature
mutation {
CreateEntityPropertyRankingBacklog(entityName: ..., technicalCode: ..., name: ..., choiceType: ...)
}
Retourne : EntityPropertyRankingBacklog
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 {
CreateEntityPropertyRankingBacklog(
entityName: $entityName
technicalCode: $technicalCode
name: $name
choiceType: $choiceType
) {
# Sélectionner les champs souhaités
}
}