37 lines
692 B
GraphQL
37 lines
692 B
GraphQL
#import "../../AccountPage/Ref.graphql"
|
|
#import "../../ContentPage/Ref.graphql"
|
|
#import "../../LoyaltyPage/Ref.graphql"
|
|
#import "../../HotelPage/Ref.graphql"
|
|
|
|
fragment TeaserCardBlockRef on TeaserCard {
|
|
secondary_button {
|
|
linkConnection {
|
|
edges {
|
|
node {
|
|
__typename
|
|
...AccountPageRef
|
|
...ContentPageRef
|
|
...LoyaltyPageRef
|
|
...HotelPageRef
|
|
}
|
|
}
|
|
}
|
|
}
|
|
primary_button {
|
|
linkConnection {
|
|
edges {
|
|
node {
|
|
__typename
|
|
...AccountPageRef
|
|
...ContentPageRef
|
|
...LoyaltyPageRef
|
|
...HotelPageRef
|
|
}
|
|
}
|
|
}
|
|
}
|
|
system {
|
|
...System
|
|
}
|
|
}
|