OBJECT
CompetitionPlayerConnection
Paginated list of players in a Competition.
link GraphQL Schema definition
1 type CompetitionPlayerConnection { 2 3 # The elements of the list. 4 : [CompetitionPlayerEdge!]! 5 6 # Are there more players in the competition and what is the cursor. 7 : PageInfo! 8 9 # The total amount of players in the competition. 10 : Int! 11 12 }