Skip to content

CustomModulePaginationConnection

The connection type for CustomModule.

Fields

edges · [CustomModuleEdge] · A list of edges.
nodes · [CustomModule] · 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 CustomModule.
"""
type CustomModulePaginationConnection {
"""
A list of edges.
"""
edges: [CustomModuleEdge]
"""
A list of nodes.
"""
nodes: [CustomModule]
"""
Information to aid in pagination.
"""
page_info: PageInfo!
"""
Total count of items.
"""
total_count: Int!
}