MatchSeriesContestant
A contestant (team or player) within a match series
type MatchSeriesContestant {
id: ID!
matchSeries: MatchSeries
members: [MatchSeriesContestantMember]
points: Int
rank: Int
result: MatchSeriesGameResult
score: Int
team: Team
}
Fields
MatchSeriesContestant.id
● ID!
non-null scalar
The unique identifier of the object
MatchSeriesContestant.matchSeries
● MatchSeries
object
Related match series data
MatchSeriesContestant.members
● [MatchSeriesContestantMember]
list object
List of players of the contestant within the match series
MatchSeriesContestant.points
● Int
scalar
The points of the contestant within the match series (used for FFA tournaments)
MatchSeriesContestant.rank
● Int
scalar
The rank of the contestant within the match series (used for FFA tournaments)
MatchSeriesContestant.result
● MatchSeriesGameResult
enum
The result of the contestant within the match series
MatchSeriesContestant.score
● Int
scalar
The number of won matches by the contestant within the series
MatchSeriesContestant.team
● Team
object
The team that the contestant (only defined for team-based tournaments)
Member Of
MapVote
object ● MatchSeries
object ● MatchSeriesContestantMember
object ● PredictionOutcomeMatchSeriesContestant
object
Implemented By
FixtureData
union