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
21 lines
366 B
GraphQL
21 lines
366 B
GraphQL
#import "../../Fragments/System.graphql"
|
|
|
|
query GetCityPageUrls($locale: String!) {
|
|
all_destination_city_page(locale: $locale) {
|
|
items {
|
|
url
|
|
destination_settings {
|
|
city_denmark
|
|
city_finland
|
|
city_germany
|
|
city_norway
|
|
city_poland
|
|
city_sweden
|
|
}
|
|
system {
|
|
...System
|
|
}
|
|
}
|
|
}
|
|
}
|