Round
Type representing a round in a tournament.
type Round {
number: Int
playType: PlayType
isIndividualPlayoff: Boolean
isTeamPlayoff: Boolean
status: String
}
Fields
Round.number
● Int
scalar
The number of the round.
Round.playType
● PlayType
enum
The type of play for the round.
Round.isIndividualPlayoff
● Boolean
scalar
Indicates if it's an individual playoff round.
Round.isTeamPlayoff
● Boolean
scalar
Indicates if it's a team playoff round.
Round.status
● String
scalar
The current status of play for the round
Member of
Tournament
object