OBJECT

CompetitionTeamConnection

List of competition teams and their scores.

link GraphQL Schema definition

1type CompetitionTeamConnection {
2
3# The elements of the list.
4edges: [CompetitionTeamEdge!]!
5
6# Are there more teams in the competition and what is the cursor.
7pageInfo: PageInfo!
8
9# The total amount of teams in the competition.
10totalCount: Int!
11
12}