UpdateGeneralAssembly
Signature
mutation {
UpdateGeneralAssembly(generalAssemblyId: ...)
}
Retourne : GeneralAssembly
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
generalAssemblyId | ID! | ✓ | — | — |
generalAssemblyName | String | — | — | |
generalAssemblyType | GeneralAssemblyType | — | — | |
generalAssemblyConveningNumber | GeneralAssemblyConveningNumber | — | — | |
quorum | Float | — | — | |
quorumCalculationStrategy | QuorumCalculationStrategy | — | — | |
conveningDate | Date | — | — | |
generalAssemblyDate | DateTime | — | — | |
votesEndDate | DateTime | — | — | |
mandateDocumentTemplateId | ID | — | — | |
conveningDocumentTemplateId | ID | — | — | |
documents | [UploadDocument] | — | Replace all currently associated documents with uploaded documents |
Exemple
mutation {
UpdateGeneralAssembly(
generalAssemblyId: $generalAssemblyId
) {
id
name
company {}
quorum
quorumStrategy {}
conveningDate
registerDate
assemblyDate
votesEndDate
mandateDocumentTemplate {}
conveningDocumentTemplate {}
type {}
status {}
conveningNumber {}
documents {}
generalAssemblyResolutions {}
generalAssemblyResolutionsForUser(userId: $userId) {}
}
}