PageInfo
Represents pagination information for connections following the Relay Cursor Connection Specification. Indicates if there are more items when paginating forwards or backwards and provides cursors for pagination.
type PageInfo {
hasNextPage: Boolean!
hasPreviousPage: Boolean!
startCursor: String
endCursor: String
}
Fields
PageInfo.hasNextPage
● Boolean!
non-null scalar
Indicates if there are more items when paginating forwards.
PageInfo.hasPreviousPage
● Boolean!
non-null scalar
Indicates if there are more items when paginating backwards.
PageInfo.startCursor
● String
scalar
The cursor for the first item in the current page, used for paginating backwards.
PageInfo.endCursor
● String
scalar
The cursor for the last item in the current page, used for paginating forwards.
Member Of
CarrierConnection
object ● TrackEventConnection
object