UpdateStakeholderTypology
Signature
mutation {
UpdateStakeholderTypology(id: ..., name: ...)
}
Retourne : StakeholderTypology!
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
id | ID! | ✓ | — | — |
name | String! | ✓ | — | — |
type | StakeholderTypologyType | — | — | |
configurableFormId | ID | — | — |
Exemple
mutation {
UpdateStakeholderTypology(
id: $id
name: $name
) {
id
name
type {}
configurableForm {}
stakeholdersCount
createdAt
updatedAt
}
}