Skip to main content

RegistrationPage

A page of registrations together with pagination metadata.

Returned by *Paged query fields such as Event.registrationsPaged. Use items for the registrations on the current page and pageInfo to drive pagination UI (total count, has-next-page, etc.).

type RegistrationPage {
items: [Registration!]!
pageInfo: OffsetPageInfo!
}

Fields

RegistrationPage.items ● [Registration!]! non-null object

The registrations on this page, in the same order they would be returned by the equivalent registrations field with the same offset, limit and filter arguments.

RegistrationPage.pageInfo ● OffsetPageInfo! non-null object

Pagination metadata for this page.

Member Of

Event object