OBJECT

UserConnection

Paginated list of Users, where the relationship between the source type and the User is generic enough that no information needs to be encoded on the edge.

link GraphQL Schema definition

1type UserConnection {
2
3edges: [UserEdge!]
4
5pageInfo: PageInfo!
6
7# The total number of users.
8totalCount: Int
9
10}