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:
@@ -0,0 +1,7 @@
|
||||
#import "../../Fragments/System.graphql"
|
||||
|
||||
query GetHotelPageCount($locale: String!) {
|
||||
all_hotel_page(locale: $locale) {
|
||||
total
|
||||
}
|
||||
}
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user