OBJECT
CompetitionPlayer
A player is solo participant in a Competition.
link GraphQL Schema definition
1 type CompetitionPlayer { 2 3 # Competition ID player is a part of. 4 : ID! 5 6 # The time the player was added. 7 : Time! 8 9 # The discord username for the player. 10 : String 11 12 # Unique ID for competition player. 13 : ID! 14 15 # The in game username for the player. 16 : String 17 18 # Indicates whether the player is disqualified. 19 : Boolean! 20 21 # The state a player has in the competition. 22 : CompetitionPlayerState! 23 24 # The associated team the user is part of. 25 : CompetitionTeam 26 27 # The total score for the competition player. 28 : Int! 29 30 # The associated user. 31 : User! 32 33 }
link Required by
- CompetitionParticipantA CompetitionParticipant is either a CompetitionPlayer who is playing solo or a CompetitionTeam who plays as a team.
- CompetitionPlayerEdgeContains information about a Players relationship to a given page (connection), and the Player themselves.
- CompetitionTeamA Team is scheduled or has competed in a Competition.