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

@@ -11,6 +11,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"
@@ -23,6 +24,7 @@
#import "../../Fragments/HotelPage/Ref.graphql"
#import "../../Fragments/LoyaltyPage/Ref.graphql"
#import "../../Fragments/StartPage/Ref.graphql"
#import "../../Fragments/PromoCampaignPage/Ref.graphql"
query GetNavigationMyPages($locale: String!) {
all_navigation_my_pages(locale: $locale, limit: 1) {
@@ -46,6 +48,7 @@ query GetNavigationMyPages($locale: String!) {
...HotelPageLink
...LoyaltyPageLink
...StartPageLink
...PromoCampaignPageLink
}
}
}
@@ -76,6 +79,7 @@ query GetNavigationMyPagesRefs($locale: String!) {
...HotelPageRef
...LoyaltyPageRef
...StartPageRef
...PromoCampaignPageRef
}
}
}