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
) {
id
name
type {}
issueDate
status {}
documentTemplate {}
startPeriod
endPeriod
target {}
documentBatchIncludedSegments {}
recipientIds
documents {}
uploadedDocuments {}
generationMethod {}
ongoingAsynchronousOperationVisibilityToggle
externalDataDocument {}
externalDataColumn
vehicle {}
generatedDocumentsCount
}
}