OBJECT

CompetitionStandingEdge

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

link GraphQL Schema definition

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