SessionPage
A page of sessions together with pagination metadata.
Returned by *Paged query fields such as Event.sessionsPaged. Use items for the
sessions on the current page and pageInfo to drive pagination UI
(total count, has-next-page, etc.).
type SessionPage {
items: [Session!]!
pageInfo: OffsetPageInfo!
}
Fields
SessionPage.items ● [Session!]! non-null object
The sessions on this page, in the same order they would be returned by the equivalent
sessions field with the same offset, limit and filter arguments
(ordered by date ascending, then by start time ascending).
SessionPage.pageInfo ● OffsetPageInfo! non-null object
Pagination metadata for this page.
Member Of
Event object