Feat/SW-1449 destination page * feat(SW-1449): Added destination country page * feat(SW-1449): added destination city page Approved-by: Fredrik Thorsson Approved-by: Matilda Landström
69 lines
1.6 KiB
GraphQL
69 lines
1.6 KiB
GraphQL
query GetAccountPageSettings($uid: String!, $locale: String!) {
|
|
account_page(uid: $uid, locale: $locale) {
|
|
page_settings {
|
|
hide_booking_widget
|
|
}
|
|
}
|
|
}
|
|
|
|
query GetLoyaltyPageSettings($uid: String!, $locale: String!) {
|
|
loyalty_page(uid: $uid, locale: $locale) {
|
|
page_settings {
|
|
hide_booking_widget
|
|
}
|
|
}
|
|
}
|
|
|
|
query GetCollectionPageSettings($uid: String!, $locale: String!) {
|
|
collection_page(uid: $uid, locale: $locale) {
|
|
page_settings {
|
|
hide_booking_widget
|
|
}
|
|
}
|
|
}
|
|
|
|
query GetContentPageSettings($uid: String!, $locale: String!) {
|
|
content_page(uid: $uid, locale: $locale) {
|
|
page_settings {
|
|
hide_booking_widget
|
|
}
|
|
}
|
|
}
|
|
query GetDestinationOverviewPageSettings($uid: String!, $locale: String!) {
|
|
destination_overview_page(uid: $uid, locale: $locale) {
|
|
page_settings {
|
|
hide_booking_widget
|
|
}
|
|
}
|
|
}
|
|
query GetDestinationCountryPageSettings($uid: String!, $locale: String!) {
|
|
destination_country_page(uid: $uid, locale: $locale) {
|
|
page_settings {
|
|
hide_booking_widget
|
|
}
|
|
}
|
|
}
|
|
query GetDestinationCityPageSettings($uid: String!, $locale: String!) {
|
|
destination_city_page(uid: $uid, locale: $locale) {
|
|
page_settings {
|
|
hide_booking_widget
|
|
}
|
|
}
|
|
}
|
|
|
|
query GetHotelPageSettings($uid: String!, $locale: String!) {
|
|
hotel_page(uid: $uid, locale: $locale) {
|
|
page_settings {
|
|
hide_booking_widget
|
|
}
|
|
}
|
|
}
|
|
|
|
query GetCurrentBlocksPageSettings($uid: String!, $locale: String!) {
|
|
current_blocks_page(uid: $uid, locale: $locale) {
|
|
page_settings {
|
|
hide_booking_widget
|
|
}
|
|
}
|
|
}
|