Skip to main content

HotelQueries

No description

type HotelQueries {
getRoomOffers(
checkIn: LocalDate!
checkOut: LocalDate!
destination: String!
): [Hotel!]
findDestinations(
value: String!
): [Destination!]
getCancellationFees(
tripProductId: String!
roomCode: String!
totalFare: BigDecimal!
checkIn: LocalDate!
): CancellationFeeResponse
getBookings: [BookingData!]
}

Fields

HotelQueries.getRoomOffers ● [Hotel!] list object

HotelQueries.getRoomOffers.checkIn ● LocalDate! non-null scalar
HotelQueries.getRoomOffers.checkOut ● LocalDate! non-null scalar
HotelQueries.getRoomOffers.destination ● String! non-null scalar

HotelQueries.findDestinations ● [Destination!] list object

HotelQueries.findDestinations.value ● String! non-null scalar

HotelQueries.getCancellationFees ● CancellationFeeResponse object

HotelQueries.getCancellationFees.tripProductId ● String! non-null scalar
HotelQueries.getCancellationFees.roomCode ● String! non-null scalar
HotelQueries.getCancellationFees.totalFare ● BigDecimal! non-null scalar
HotelQueries.getCancellationFees.checkIn ● LocalDate! non-null scalar

HotelQueries.getBookings ● [BookingData!] list object

Returned By

hotels query