OBJECT

CompetitionParticipantEdge

Contains information about a competition participant relationship to the paginated request, and the participant themselves.

link GraphQL Schema definition

1type CompetitionParticipantEdge {
2
3# Opaque cursor describing this edge's position in the paginated list.
4cursor: Cursor!
5
6# A competition participant record.
7node: CompetitionParticipant!
8
9}