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