TournamentContestant
A contestant (team or player) that is participating in a tournament
type TournamentContestant {
id: ID!
members: [TournamentContestantMember]
rank: Int
team: Team
tournament: Tournament
}
Fields
TournamentContestant.id
● ID!
non-null scalar
The unique identifier of the object
TournamentContestant.members
● [TournamentContestantMember]
list object
The players of the contestants within the tournament
TournamentContestant.rank
● Int
scalar
The final placement of the contestant within the tournament (e.g. 1 for 1st place, 2 for 2nd place, ...)
TournamentContestant.team
● Team
object
The related team of the contestant (only set when contestant is a team)
TournamentContestant.tournament
● Tournament
object
Related tournament data
Member Of
Tournament
object ● TournamentContestantMember
object
Implemented By
FixtureData
union