Skip to content

TaskPaginationConnection

The connection type for Task.

Fields

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