CreateStakeholder
Signature
mutation {
CreateStakeholder(typologyId: ...)
}
Retourne : Stakeholder!
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
typologyId | ID! | ✓ | — | — |
companyId | ID | — | — | |
typologyType | StakeholderTypologyType | — | — | |
corporateName | String | — | — | |
firstName | String | — | — | |
lastName | String | — | — |
Exemple
mutation {
CreateStakeholder(
typologyId: $typologyId
) {
id
typology {}
corporateAccount {}
individualAccount {}
company {}
}
}