10 lines
136 B
GraphQL
10 lines
136 B
GraphQL
mutation CreateTeam($input: CreateTeamInput!) {
|
|
createTeam(input: $input) {
|
|
team {
|
|
id
|
|
name
|
|
teamType
|
|
}
|
|
}
|
|
}
|