Merged in feat/LOY-394-promos-linkable (pull request #2918)

feat(LOY-394): add promo campaign page link

* feat(LOY-394): make promo campaigns linkable from everewhere


Approved-by: Erik Tiekstra
Approved-by: Chuma Mcphoy (We Ahead)
This commit is contained in:
Matilda Landström
2025-10-07 13:30:34 +00:00
parent 31dcbc5335
commit 2176a7dd6f
35 changed files with 195 additions and 1 deletions

View File

@@ -16,6 +16,7 @@
#import "../../Fragments/PageLink/HotelPageLink.graphql"
#import "../../Fragments/PageLink/LoyaltyPageLink.graphql"
#import "../../Fragments/PageLink/StartPageLink.graphql"
#import "../../Fragments/PageLink/PromoCampaignPageLink.graphql"
#import "../../Fragments/AccountPage/Ref.graphql"
#import "../../Fragments/CampaignOverviewPage/Ref.graphql"
@@ -28,6 +29,7 @@
#import "../../Fragments/HotelPage/Ref.graphql"
#import "../../Fragments/LoyaltyPage/Ref.graphql"
#import "../../Fragments/StartPage/Ref.graphql"
#import "../../Fragments/PromoCampaignPage/Ref.graphql"
query GetDestinationCountryPage($locale: String!, $uid: String!) {
destination_country_page(uid: $uid, locale: $locale) {
@@ -68,6 +70,7 @@ query GetDestinationCountryPage($locale: String!, $uid: String!) {
...HotelPageLink
...LoyaltyPageLink
...StartPageLink
...PromoCampaignPageLink
}
}
}
@@ -112,6 +115,7 @@ query GetDestinationCountryPageRefs($locale: String!, $uid: String!) {
...HotelPageRef
...LoyaltyPageRef
...StartPageRef
...PromoCampaignPageRef
}
}
}