OBJECT

CompetitionPlayerEdge

Contains information about a Players relationship to a given page (connection), and the Player themselves.

link GraphQL Schema definition

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