OBJECT
Tournament
A tournament
link GraphQL Schema definition
- type Tournament {
- : ID
- : String
- # Admin-only view of admins for this tournament
- #
- # Arguments
- # roles: Which roles to show
- (: [String]): [User]
- : String
- : String
- # When the tournament was created (unix timestamp)
- : Timestamp
- : String
- # When the tournament ends
- : Timestamp
- # When does event registration close
- : Timestamp
- # Arguments
- # limit: [Not documented]
- # filter: [Not documented]
- (: Int, : EventFilter): [Event]
- # True if tournament has at least one offline event
- : Boolean
- : Boolean
- : String
- # Arguments
- # type: [Not documented]
- (: String): [Image]
- # True if tournament has at least one online event
- : Boolean
- # Is tournament registration open
- : Boolean
- : Float
- : TournamentLinks
- : Float
- : String
- # The tournament name
- : String
- # Number of attendees including spectators, if public
- : Int
- # The user who created the tournament
- : User
- # Paginated, queryable list of participants
- #
- # Arguments
- # query: [Not documented]
- # isAdmin: [Not documented]
- (: ParticipantPaginationQuery!, : Boolean): ParticipantConnection
- : String
- : String
- : String
- # Publishing settings for this tournament
- : JSON
- # When does registration for the tournament end
- : Timestamp
- : String
- # The short slug used to form the url
- : String
- # The slug used to form the url
- : String
- # When the tournament Starts
- : Timestamp
- # State of the tournament, can be ActivityState::CREATED, ActivityState::ACTIVE,
- # or ActivityState::COMPLETED
- : Int
- # Arguments
- # page: [Not documented]
- # perPage: [Not documented]
- (: Int, : Int): StationsConnection
- : [StreamQueue]
- : [Streams]
- # When is the team creation deadline
- : Timestamp
- # Paginated, queryable list of teams
- #
- # Arguments
- # query: [Not documented]
- (: TeamPaginationQuery!): TeamConnection
- # The timezone of the tournament
- : String
- # The type of tournament from TournamentType
- : Int
- # When the tournament was last modified (unix timestamp)
- : Timestamp
- # Build Tournament URL
- #
- # Arguments
- # tab: Tournament tab to add to URL
- # relative: Generate a relative URL. Defaults to true. Setting to
- # false will generate an absolute URL
- (: String, : Boolean): String
- : String
- : String
- # List of all waves in this tournament
- : [Wave]
- }