Skip to content

NotificationPaginationConnection

The connection type for Notification.

Fields

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