PageInfo provides cursor-based pagination information for Relay connections.
This message follows the Relay GraphQL Connection specification and contains metadata about the current page in a cursor-paginated result set.
Example usage:
import "trogon/relay/v1alpha1/page_info.proto";
message UserConnection {
repeated UserEdge edges = 1;
trogon.relay.v1alpha1.PageInfo page_info = 2;}
Summary
Types
@type t() :: %TrogonProto.Relay.V1Alpha1.PageInfo{ __unknown_fields__: [Protobuf.unknown_field()], end_cursor: String.t() | nil, has_next_page: boolean(), has_previous_page: boolean(), start_cursor: String.t() | nil }