ConveneGeneralAssembly
Signature
mutation {
ConveneGeneralAssembly(generalAssemblyId: ..., conveningDate: ..., votesEndDate: ..., conveningDocumentTemplateId: ...)
}
Retourne : GeneralAssembly
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
generalAssemblyId | ID! | ✓ | — | — |
conveningDate | Date! | ✓ | — | — |
registerDate | Date | — | Record date used to determine which investment accounts to convene. Will be mandatory as of the 2026-06 release. Falls back to the current date if not provided (temporary backward compatibility). | |
votesEndDate | DateTime! | ✓ | — | — |
conveningDocumentTemplateId | ID! | ✓ | — | — |
withEmail | Boolean | — | — |
Exemple
mutation {
ConveneGeneralAssembly(
generalAssemblyId: $generalAssemblyId
conveningDate: $conveningDate
votesEndDate: $votesEndDate
conveningDocumentTemplateId: $conveningDocumentTemplateId
) {
id
name
company {}
quorum
quorumStrategy {}
conveningDate
registerDate
assemblyDate
votesEndDate
mandateDocumentTemplate {}
conveningDocumentTemplate {}
type {}
status {}
conveningNumber {}
documents {}
generalAssemblyResolutions {}
generalAssemblyResolutionsForUser(userId: $userId) {}
}
}