OBJECT

UsersConnection

A connection to a list of User values.

link GraphQL Schema definition

  • type UsersConnection {
  • # A list of `User` objects.
  • nodes: [User]!
  • # A list of edges which contains the `User` and cursor to aid in pagination.
  • edges: [UsersEdge!]!
  • # Information to aid in pagination.
  • pageInfo: PageInfo!
  • # The count of *all* `User` you could get from the connection.
  • totalCount: Int
  • }