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
14 lines
216 B
GraphQL
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
|
|
}
|
|
}
|
|
}
|
|
}
|