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