ENUM

FormatType

The format type signifies the format the competition will run from.

link GraphQL Schema definition

1enum FormatType {
2
3# Double elimination bracket format.
4DOUBLE_ELIM
5
6# Single elimination bracket format.
7SINGLE_ELIM
8
9# Round robin format.
10ROUND_ROBIN
11
12# Leaderboard format.
13LEADERBOARD
14
15# Custom format.
16CUSTOM
17
18# Unknown format.
19UNKNOWN
20}