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

20 lines
282 B
GraphQL

mutation CreateTeam($name: String!) {
createTeam(name: $name) {
id
name
members {
membershipID
role
user {
uid
displayName
email
photoURL
}
}
myRole
ownersCount
editorsCount
viewersCount
}
}