Files
web/lib/graphql/Query/HotelPage/HotelPageUrl.graphql
Erik Tiekstra bc50dcf286 Merged in fix/SW-1754-overview-page-rate-limit (pull request #1412)
fix(SW-1754): Fix rate limit issue on Destination Overview Page

* fix(SW-1754): Fix rate limit issue on Destination Overview Page


Approved-by: Matilda Landström
2025-02-25 14:40:31 +00:00

14 lines
216 B
GraphQL

#import "../../Fragments/System.graphql"
query GetHotelPageUrls($locale: String!) {
all_hotel_page(locale: $locale) {
items {
url
hotel_page_id
system {
...System
}
}
}
}