Skip to main content

ConveneGeneralAssembly

Stable

Signature

mutation {
ConveneGeneralAssembly(generalAssemblyId: ..., conveningDate: ..., votesEndDate: ..., conveningDocumentTemplateId: ...)
}

Retourne : GeneralAssembly

Arguments

NomTypeRequisDéfautDescription
generalAssemblyIdID!
conveningDateDate!
registerDateDateRecord 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).
votesEndDateDateTime!
conveningDocumentTemplateIdID!
withEmailBoolean

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) {}
}
}