Skip to content

AuditEventPaginationConnection

The connection type for AuditEvent.

Fields

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