Skip to main content

Tournament

Type representing a tournament.

type Tournament {
id: Int
name: String
location: String
courses: [TournamentCourse]
rounds: [Round]
country: Country
startDate: String
endDate: String
currentRound: Int
status: String
}

Fields

Tournament.id ● Int scalar

The unique identifier for the tournament.

Tournament.name ● String scalar

The name of the tournament.

Tournament.location ● String scalar

The location of the tournament.

Tournament.courses ● [TournamentCourse] list object

The list of courses associated with the tournament.

Tournament.rounds ● [Round] list object

The list of rounds in the tournament.

Tournament.country ● Country object

The country where the tournament is played.

Tournament.startDate ● String scalar

The start date (UTC).

Tournament.endDate ● String scalar

The end date (UTC).

Tournament.currentRound ● Int scalar

The current round of the tournament.

Tournament.status ● String scalar

The current status of play for the round

Returned by

tournament query ● tournaments query

Member of

TournamentUpdateResponse object