15 lines
234 B
GraphQL
15 lines
234 B
GraphQL
mutation ChangeUserRoleInTeamByAdmin(
|
|
$userUID: ID!
|
|
$teamID: ID!
|
|
$newRole: TeamMemberRole!
|
|
) {
|
|
changeUserRoleInTeamByAdmin(
|
|
userUID: $userUID
|
|
teamID: $teamID
|
|
newRole: $newRole
|
|
) {
|
|
membershipID
|
|
role
|
|
}
|
|
}
|