INPUT_OBJECT

UpdateCompetitionPlayerInput

Update the state of a player in a Competition.

link GraphQL Schema definition

1input UpdateCompetitionPlayerInput {
4
2# Unique Competition ID.
3competitionID: ID!
7
5# The discord username for the player.
6discordUsername: String
10
8# The in game username for the player.
9inGameUsername: String
13
11# Indicates whether the player is disqualified.
12isDisqualified: Boolean
16
14# The state a player has in the competition we want to change.
15state: CompetitionPlayerState
19
17# Twitch user id of the player.
18userID: ID!
20}