Files
web/apps/scandic-web/lib/graphql/Query/HotelPage/HotelPageUrl.graphql
Erik Tiekstra 4ad1799532 Merged in fix/SW-1784-hotel-url-fetching (pull request #1450)
fix(SW-1784): Fixed issue fetching all hotel urls at once.

* fix(SW-1784): Fixed issue fetching all hotel urls at once.


Approved-by: Christian Andolf
2025-03-03 06:37:55 +00:00

14 lines
253 B
GraphQL

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