Files
hoppscotch/packages/hoppscotch-app/helpers/backend/gql/mutations/UpdateTeamMemberRole.graphql
2021-11-02 19:17:09 +05:30

14 lines
221 B
GraphQL

mutation UpdateTeamMemberRole(
$newRole: TeamMemberRole!,
$userUid: ID!,
$teamID: ID!
) {
updateTeamMemberRole(
newRole: $newRole
userUid: $userUid
teamID: $teamID
) {
membershipID
role
}
}