GetUserGeneralAssemblies
Get general assemblies accessible to a user or account. Exactly one of userId or accountId must be provided (mutually exclusive). Returns InvalidPayload error if both or neither are provided.
Signature
query {
GetUserGeneralAssemblies
}
Retourne : [GeneralAssembly]
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
userId | ID | — | User ID - required if accountId is not provided (mutually exclusive with accountId) | |
accountId | ID | — | Account ID - required if userId is not provided (mutually exclusive with userId) | |
issuerId | ID | — | — | |
states | [GeneralAssemblyState] | — | — |
Exemple
query {
GetUserGeneralAssemblies {
id
name
company {}
quorum
quorumStrategy {}
conveningDate
registerDate
assemblyDate
votesEndDate
mandateDocumentTemplate {}
conveningDocumentTemplate {}
type {}
status {}
conveningNumber {}
documents {}
generalAssemblyResolutions {}
generalAssemblyResolutionsForUser(userId: $userId) {}
}
}