UpdateGeneralAssemblyResolution
Signature
mutation {
UpdateGeneralAssemblyResolution(id: ...)
}
Retourne : GeneralAssemblyResolution
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
id | ID! | ✓ | — | — |
number | Int | — | — | |
name | String | — | — | |
description | String | — | — | |
majority | Float | — | — | |
generalAssemblyResolutionType | GeneralAssemblyResolutionType | — | — |
Exemple
mutation {
UpdateGeneralAssemblyResolution(
id: $id
) {
id
name
number
description
generalAssembly {}
majority
type {}
status {}
outcome {}
votes {}
votesByUser(userId: $userId) {}
votesByAccount(accountId: $accountId) {}
}
}