Skip to content

UserConnection

The connection type for User.

graphql
type UserConnection {
  edges: [UserEdge!]!
  nodes: [User!]!
  pageInfo: PageInfo!
  totalCount: Int!
}

Fields

UserConnection.edges ● [UserEdge!]! non-null object

A list of all edges of the current page.

UserConnection.nodes ● [User!]! non-null interface

A list of all nodes of the current page.

UserConnection.pageInfo ● PageInfo! non-null object

Information to aid in pagination.

UserConnection.totalCount ● Int! non-null scalar

Identifies the total count of items in the connection.

Member Of

Component object ● Issue object ● Project object ● Trackable interface

Released under the MIT License.