Files
hoppscotch/packages/hoppscotch-app/helpers/backend/gql/mutations/RenameTeam.graphql

13 lines
214 B
GraphQL

mutation RenameTeam($newName: String!, $teamID: ID!) {
renameTeam(newName: $newName, teamID: $teamID) {
id
name
teamMembers {
membershipID
user {
uid
}
role
}
}
}