OBJECT

CompetitionEdge

Contains information about a Competition's relationship to a given page (connection), and the Competition itself.

link GraphQL Schema definition

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