OBJECT

CompetitionPlayer

A player is solo participant in a Competition.

link GraphQL Schema definition

1type CompetitionPlayer {
2
3# Competition ID player is a part of.
4competitionID: ID!
5
6# The time the player was added.
7createdAt: Time!
8
9# The discord username for the player.
10discordUsername: String
11
12# Unique ID for competition player.
13id: ID!
14
15# The in game username for the player.
16inGameUsername: String
17
18# Indicates whether the player is disqualified.
19isDisqualified: Boolean!
20
21# The state a player has in the competition.
22state: CompetitionPlayerState!
23
24# The associated team the user is part of.
25team: CompetitionTeam
26
27# The total score for the competition player.
28totalScore: Int!
29
30# The associated user.
31user: User!
32
33}