feat(SW-3015): Added pagelinks for campaign page on all connections

Approved-by: Matilda Landström
This commit is contained in:
Erik Tiekstra
2025-06-18 12:06:48 +00:00
parent 2f553bb945
commit c783f3a764
39 changed files with 248 additions and 39 deletions

View File

@@ -1,6 +1,8 @@
#import "../System.graphql"
#import "./ContentCard.graphql"
#import "../PageLink/AccountPageLink.graphql"
#import "../PageLink/CampaignPageLink.graphql"
#import "../PageLink/CollectionPageLink.graphql"
#import "../PageLink/ContentPageLink.graphql"
#import "../PageLink/DestinationCityPageLink.graphql"
@@ -11,13 +13,15 @@
#import "../PageLink/StartPageLink.graphql"
#import "../AccountPage/Ref.graphql"
#import "../ContentPage/Ref.graphql"
#import "../HotelPage/Ref.graphql"
#import "../LoyaltyPage/Ref.graphql"
#import "../CampaignPage/Ref.graphql"
#import "../CollectionPage/Ref.graphql"
#import "../ContentPage/Ref.graphql"
#import "../DestinationCityPage/Ref.graphql"
#import "../DestinationCountryPage/Ref.graphql"
#import "../DestinationOverviewPage/Ref.graphql"
#import "../HotelPage/Ref.graphql"
#import "../LoyaltyPage/Ref.graphql"
#import "../StartPage/Ref.graphql"
fragment CardGallery_DestinationOverviewPage on DestinationOverviewPageBlocksCardGallery {
card_gallery {
@@ -46,6 +50,7 @@ fragment CardGallery_DestinationOverviewPage on DestinationOverviewPageBlocksCar
node {
__typename
...AccountPageLink
...CampaignPageLink
...CollectionPageLink
...ContentPageLink
...DestinationCityPageLink
@@ -53,6 +58,7 @@ fragment CardGallery_DestinationOverviewPage on DestinationOverviewPageBlocksCar
...DestinationOverviewPageLink
...HotelPageLink
...LoyaltyPageLink
...StartPageLink
}
}
}
@@ -77,6 +83,7 @@ fragment CardGallery_DestinationOverviewPageRefs on DestinationOverviewPageBlock
node {
__typename
...AccountPageRef
...CampaignPageRef
...CollectionPageRef
...ContentPageRef
...DestinationCityPageRef
@@ -84,6 +91,7 @@ fragment CardGallery_DestinationOverviewPageRefs on DestinationOverviewPageBlock
...DestinationOverviewPageRef
...HotelPageRef
...LoyaltyPageRef
...StartPageRef
}
}
}