Revert gql * Revert "Merged in fix/system-fragment (pull request #3102)" This reverts commit0d479eb337. * Revert "Merged in chore/replace-graphql-tag/loader (pull request #3096)" This reverts commite9bd159e98.
21 lines
403 B
GraphQL
21 lines
403 B
GraphQL
#import "../../Fragments/System.graphql"
|
|
|
|
query GetCityPageUrls($locale: String!, $skip: Int) {
|
|
all_destination_city_page(locale: $locale, limit: 100, skip: $skip) {
|
|
items {
|
|
url
|
|
destination_settings {
|
|
city_denmark
|
|
city_finland
|
|
city_germany
|
|
city_norway
|
|
city_poland
|
|
city_sweden
|
|
}
|
|
system {
|
|
...System
|
|
}
|
|
}
|
|
}
|
|
}
|