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