OBJECT

UserEdge

An edge in a connection.

link GraphQL Schema definition

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