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

13 lines
210 B
GraphQL

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