CreateJointAccount
Signature
mutation {
CreateJointAccount(secondaryFirstName: ..., secondaryLastName: ...)
}
Retourne : JointAccount!
Arguments
| Nom | Type | Requis | Défaut | Description |
|---|---|---|---|---|
userId | ID | — | — | |
secondaryFirstName | String! | ✓ | — | — |
secondaryLastName | String! | ✓ | — | — |
secondaryEmail | String | — | — | |
secondaryMobile | String | — | — | |
email | String | — | — | |
firstName | String | — | — | |
lastName | String | — | — | |
mobile | String | — | — | |
customAccesses | [UserAccountInput!] | — | — | |
distributorAdvisorId | ID | — | — | |
sendNotificationEmail | Boolean | false | — |
Exemple
mutation {
CreateJointAccount(
secondaryFirstName: $secondaryFirstName
secondaryLastName: $secondaryLastName
) {
# Sélectionner les champs souhaités
}
}