Skip to main content

HotelBookingPage

A page of hotel bookings together with pagination metadata.

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

type HotelBookingPage {
items: [HotelBooking!]!
pageInfo: OffsetPageInfo!
}

Fields

HotelBookingPage.items ● [HotelBooking!]! non-null object

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

HotelBookingPage.pageInfo ● OffsetPageInfo! non-null object

Pagination metadata for this page.

Member Of

Contact object ● Event object