UpdateConfigurableFormQuestion
Signature
mutation {
UpdateConfigurableFormQuestion(id: ...)
}
Retourne : ConfigurableFormQuestion!
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
id | ID! | ✓ | — | — |
append | String | — | — | |
content | String | — | — | |
dataNormalizer | FormQuestionDataNormalizer | — | — | |
dataNormalizerDefinition | Mixed | — | — | |
dataStrategy | FormQuestionDataStrategy | — | — | |
entityPropertyContext | FormQuestionDataStrategyDefinition | — | — | |
entityProperty | EntityPropertyType | — | — | |
extendedValidations | Array | — | — | |
formDefinition | Array | — | — | |
helpText | String | — | — | |
applicable | String | — | — | |
label | String | — | — | |
phpApplicable | String | — | — | |
placeholder | String | — | — | |
sortIndex | Int | — | — | |
technicalCode | String | — | — | |
tooltip | String | — | — | |
totalLabel | String | — | — | |
validations | Array | — | — | |
width | Int | — | — | |
nestedConfigurableFormId | ID | — | — | |
configurableFormQuestionEntityProperties | [ConfigurableFormQuestionEntityPropertyInput] | — | — |
Exemple
mutation {
UpdateConfigurableFormQuestion(
id: $id
) {
id
formDefinition
applicable
validations
sortIndex
technicalCode
configurableFormStep {}
dataStrategy {}
dataNormalizer {}
dataStrategyDefinition
entityPropertyContext {}
dataNormalizerDefinition
phpApplicable
entityProperty {}
firstEntityProperty {}
configurableFormQuestionEntityProperties {}
extendedValidations
label
tooltip
placeholder
helpText
totalLabel
append
content
nestedConfigurableForm {}
nestedFormQuestions {}
width
}
}