SetAccountDocumentsVisibilityForInvestors
Signature
mutation {
SetAccountDocumentsVisibilityForInvestors(documentBatchId: ..., visibleByInvestors: ..., withEmail: ..., toggleAll: ...)
}
Retourne : DocumentBatch!
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
documentBatchId | ID! | ✓ | — | — |
accountDocumentsIds | [ID] | — | — | |
visibleByInvestors | Boolean! | ✓ | — | — |
withEmail | Boolean! | ✓ | — | — |
toggleAll | Boolean! | ✓ | — | — |
Exemple
mutation {
SetAccountDocumentsVisibilityForInvestors(
documentBatchId: $documentBatchId
visibleByInvestors: $visibleByInvestors
withEmail: $withEmail
toggleAll: $toggleAll
) {
# Sélectionner les champs souhaités
}
}