Similar Offers
The similarOffers
operation is used to retrieve detailed information about offers that are similar to a specified offer. This functionality is useful when a user wants to find offers with a similar nature or specifications to the one they are interested in.
Example Request
query {
similarOffers (
countryCode: PL,
languageCode: PL,
id: "152"
limit: 3
) {
offers {
name
}
}
}
Example response
{
"data": {
"similarOffers": {
"offers": [
{
"name": "Dusit Thani Maldives"
},
{
"name": "Maxx Royal"
},
{
"name": "Salinda Resort Phu Quoc Island"
}
]
}
}
}}
If you don't find example
You can explore the available filter options and other fields on our Demo Search Playground the Docs tab for detailed information on these options.