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
16 lines
265 B
GraphQL
16 lines
265 B
GraphQL
#import "../../Fragments/System.graphql"
|
|
|
|
query GetCountryPageUrls($locale: String!) {
|
|
all_destination_country_page(locale: $locale) {
|
|
items {
|
|
url
|
|
destination_settings {
|
|
country
|
|
}
|
|
system {
|
|
...System
|
|
}
|
|
}
|
|
}
|
|
}
|