Skip to content

DocumentViewingPaginationConnection

The connection type for DocumentViewing.

Fields

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