OBJECT

CompetitionParticipantConnection

Sorted list of competition participants.

link GraphQL Schema definition

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