GetEditableEntityPropertyQuestion
Build a virtual, single-question form bound to a property technical code so an authorized admin can edit one EntityProperty value of an account.
Signature
query {
GetEditableEntityPropertyQuestion(accountId: ..., technicalCode: ...)
}
Retourne : EntityPropertyQuestion!
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
accountId | ID! | ✓ | — | — |
technicalCode | String! | ✓ | — | — |
Exemple
query {
GetEditableEntityPropertyQuestion(
accountId: $accountId
technicalCode: $technicalCode
) {
id
question {}
isKycLinked
}
}