GetInvestmentForm
Signature
query {
GetInvestmentForm(investmentId: ..., formStep: ...)
}
Retourne : [FormQuestionWithAnswer]
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
investmentId | ID! | ✓ | — | — |
formStep | String! | ✓ | — | — |
Exemple
query {
GetInvestmentForm(
investmentId: $investmentId
formStep: $formStep
) {
id
formDefinition
label
tooltip
placeholder
totalLabel
helpText
append
content
applicable
validations
sortIndex
technicalCode
configurableFormStep {}
answer
width
configurableFormQuestionEntityProperties {}
nestedFormQuestions {}
openedThread {}
}
}