OBJECT

CompetitionPlayerConnection

Paginated list of players in a Competition.

link GraphQL Schema definition

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