OBJECT

CompetitionTeamEdge

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

link GraphQL Schema definition

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