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
This commit is contained in:
Erik Tiekstra
2025-03-03 06:37:55 +00:00
parent 4fc25e42b5
commit 4ad1799532
6 changed files with 125 additions and 13 deletions

View File

@@ -0,0 +1,7 @@
#import "../../Fragments/System.graphql"
query GetHotelPageCount($locale: String!) {
all_hotel_page(locale: $locale) {
total
}
}

View File

@@ -1,7 +1,7 @@
#import "../../Fragments/System.graphql"
query GetHotelPageUrls($locale: String!) {
all_hotel_page(locale: $locale) {
query GetHotelPageUrls($locale: String!, $skip: Int) {
all_hotel_page(locale: $locale, limit: 100, skip: $skip) {
items {
url
hotel_page_id