Name | Type | Required? |
---|
user_id | text | yes |
given_name | text | |
family_name | text | |
company | text | |
Modify a user's first name, last name, and/or associated company
mutation MyMutation {
modifyUser(userId: "123abc", givenName: "new", familyName: "name", company: "test") {
id
}
}