CreateConfigurableFormQuestion
Signature
mutation {
CreateConfigurableFormQuestion(formStepId: ..., dataStrategy: ...)
}
Retourne : ConfigurableFormQuestion!
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
formStepId | ID! | ✓ | — | — |
dataStrategy | FormQuestionDataStrategy! | ✓ | — | — |
sortIndex | Int | — | — | |
entityPropertyId | ID | — | — | |
fieldType | String | — | — | |
entityPropertyContext | FormQuestionDataStrategyDefinition | — | — | |
configurableFormId | ID | — | — |
Exemple
mutation {
CreateConfigurableFormQuestion(
formStepId: $formStepId
dataStrategy: $dataStrategy
) {
# Sélectionner les champs souhaités
}
}