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)
53 lines
1.3 KiB
GraphQL
53 lines
1.3 KiB
GraphQL
#import "../System.graphql"
|
|
|
|
#import "../PageLink/AccountPageLink.graphql"
|
|
#import "../PageLink/CampaignOverviewPageLink.graphql"
|
|
#import "../PageLink/CampaignPageLink.graphql"
|
|
#import "../PageLink/CollectionPageLink.graphql"
|
|
#import "../PageLink/ContentPageLink.graphql"
|
|
#import "../PageLink/DestinationCityPageLink.graphql"
|
|
#import "../PageLink/DestinationCountryPageLink.graphql"
|
|
#import "../PageLink/DestinationOverviewPageLink.graphql"
|
|
#import "../PageLink/HotelPageLink.graphql"
|
|
#import "../PageLink/LoyaltyPageLink.graphql"
|
|
#import "../PageLink/StartPageLink.graphql"
|
|
#import "../PageLink/PromoCampaignPageLink.graphql"
|
|
|
|
fragment LoyaltyCardBlock on LoyaltyCard {
|
|
body_text
|
|
heading
|
|
image
|
|
title
|
|
link {
|
|
cta_text
|
|
open_in_new_tab
|
|
is_contentstack_link
|
|
external_link {
|
|
title
|
|
href
|
|
}
|
|
linkConnection {
|
|
edges {
|
|
node {
|
|
__typename
|
|
...AccountPageLink
|
|
...CampaignOverviewPageLink
|
|
...CampaignPageLink
|
|
...CollectionPageLink
|
|
...ContentPageLink
|
|
...DestinationCityPageLink
|
|
...DestinationCountryPageLink
|
|
...DestinationOverviewPageLink
|
|
...HotelPageLink
|
|
...LoyaltyPageLink
|
|
...StartPageLink
|
|
...PromoCampaignPageLink
|
|
}
|
|
}
|
|
}
|
|
}
|
|
system {
|
|
...System
|
|
}
|
|
}
|