Files
hoppscotch/packages/hoppscotch-common/src/helpers/backend/gql/mutations/RenameTeam.graphql
2022-12-02 03:05:35 -05:00

13 lines
214 B
GraphQL

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