TournamentContestant
A contestant (team or player) that is participating in a tournament
type TournamentContestant {
createdAt: String!
id: ID!
members: [TournamentContestantMember]
rank: Int
team: Team
tournament: Tournament
updatedAt: String!
}
Fields
TournamentContestant.createdAt ● String! non-null scalar
Timestamp in ISO8601 when this object have been created
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
TournamentContestant.updatedAt ● String! non-null scalar
Timestamp in ISO8601 when this object have been created
Member Of
Tournament object ● TournamentContestantMember object
Implemented By
FixtureData union