INPUT_OBJECT

AddCompetitionPlayerInput

Add a User as a player to a Competition.

link GraphQL Schema definition

1input AddCompetitionPlayerInput {
4
2# Unique Competition ID.
3competitionID: ID!
7
5# The player's Discord username.
6discordUsername: String
10
8# The player's in-game username.
9inGameUsername: String
13
11# The state the player in. Defaults to INVITED if not specified.
12state: CompetitionPlayerState
16
14# Twitch user id of the player.
15userID: ID!
17}