OBJECT

OrgUsersConnection

A connection to a list of OrgUser values.

link GraphQL Schema definition

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