INPUT_OBJECT

UpdateCompetitionTeamInput

Update a team in a Competition.

link GraphQL Schema definition

1input UpdateCompetitionTeamInput {
4
2# Twitch user id of the participant to make into the TeamCaptain.
3captainID: ID
7
5# Unique Competition ID.
6competitionID: ID!
10
8# Indicates whether the team is disqualified.
9isDisqualified: Boolean
13
11# The user ids of the team members.
12members: [ID!]
16
14# Unique Team ID for the specified Competition.
15teamID: ID!
19
17# The new name of the team.
18teamName: String
20}