OBJECT

CompetitionFormat

The CompetitionFormat contains the type and type metadata of the competition. (i.e. single elimination, round robin, etc.).

link GraphQL Schema definition

1type CompetitionFormat {
2
3# The details of the format, currently only used for LEADERBOARD type.
4details: FormatTypeDetails
5
6# The type of the format for the competition.
7type: FormatType!
8
9}