OBJECT

TournamentTeam

Team is a construct that contains metadata about a team participating in the tournament, as well as the milestones associated with cheering for them.

link GraphQL Schema definition

1type TournamentTeam {
2
3# The division of the team. This string is set by the tournament organizer. (NA,
4# CN, Atlantic League, etc.).
5division: String! @deprecated( reason: "No longer supported" )
6
7# The ID of the team.
8id: ID! @deprecated( reason: "No longer supported" )
9
10# The image URL of the team.
11logoURL: String! @deprecated( reason: "No longer supported" )
12
13# Name of the team.
14name: String! @deprecated( reason: "No longer supported" )
15
16}