Skip to content

UserConnection

The connection type for User.

Fields

edges · [UserEdge] · A list of edges.
nodes · [User] · A list of nodes.
page_info · PageInfo! · required · Information to aid in pagination.
total_count · Int! · required · Total count of items.

Used By

Definition

"""
The connection type for User.
"""
type UserConnection {
"""
A list of edges.
"""
edges: [UserEdge]
"""
A list of nodes.
"""
nodes: [User]
"""
Information to aid in pagination.
"""
page_info: PageInfo!
"""
Total count of items.
"""
total_count: Int!
}