37 lines
668 B
GraphQL
37 lines
668 B
GraphQL
#import "./PageLink/AccountPageLink.graphql"
|
|
#import "./PageLink/ContentPageLink.graphql"
|
|
#import "./PageLink/HotelPageLink.graphql"
|
|
#import "./PageLink/LoyaltyPageLink.graphql"
|
|
|
|
fragment Alert on Alert {
|
|
type
|
|
heading
|
|
text
|
|
phone_contact {
|
|
display_text
|
|
phone_number
|
|
footnote
|
|
}
|
|
has_sidepeek_button
|
|
sidepeek_button {
|
|
cta_text
|
|
}
|
|
sidepeek_content {
|
|
heading
|
|
content {
|
|
embedded_itemsConnection {
|
|
edges {
|
|
node {
|
|
__typename
|
|
...AccountPageLink
|
|
...ContentPageLink
|
|
...HotelPageLink
|
|
...LoyaltyPageLink
|
|
}
|
|
}
|
|
}
|
|
json
|
|
}
|
|
}
|
|
}
|