OBJECT

UserConnection

Relay compatible page of Users

link GraphQL Schema definition

  • type UserConnection implements Connection {
  • # Count of users in this page.
  • count: Int!
  • # relay-compatible connection edge
  • edges: [UserEdge!]
  • pageInfo: PageInfo!
  • # Optional total count of matching users
  • totalCount: Int
  • # User list
  • users: [User!]
  • }