chore(SW-303): fetch activity card from CS

This commit is contained in:
Matilda Landström
2024-09-08 11:19:16 +02:00
parent 777e53ba0e
commit 84d37e58ef
9 changed files with 169 additions and 20 deletions

View File

@@ -3,6 +3,34 @@ query GetHotelPage($locale: String!, $uid: String!) {
hotel_page_id
url
title
content {
... on HotelPageContentUpcomingActivitiesCard {
__typename
upcoming_activities_card {
background_image
cta_text
heading
body_text
open_in_new_tab
scripted_title
hotel_page_activities_content_pageConnection {
edges {
node {
... on ContentPage {
url
web {
original_url
}
system {
locale
}
}
}
}
}
}
}
}
}
}