OBJECT

TeamEdge

An edge in a connection.

link GraphQL Schema definition

1type TeamEdge {
2
3# A cursor for use in pagination.
4cursor: String!
5
6# The item at the end of the edge.
7node: Team
8
9}