49 lines
1001 B
GraphQL
49 lines
1001 B
GraphQL
#import "../ContentPage/Ref.graphql"
|
|
#import "../HotelPage/Ref.graphql"
|
|
#import "../LoyaltyPage/Ref.graphql"
|
|
|
|
#import "../PageLink/ContentPageLink.graphql"
|
|
#import "../PageLink/HotelPageLink.graphql"
|
|
#import "../PageLink/LoyaltyPageLink.graphql"
|
|
|
|
fragment TextCols_ContentPage on ContentPageBlocksTextCols {
|
|
text_cols {
|
|
columns {
|
|
title
|
|
text {
|
|
json
|
|
embedded_itemsConnection {
|
|
edges {
|
|
node {
|
|
__typename
|
|
...ContentPageLink
|
|
...HotelPageLink
|
|
...LoyaltyPageLink
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
fragment TextCols_ContentPageRef on ContentPageBlocksTextCols {
|
|
text_cols {
|
|
columns {
|
|
title
|
|
text {
|
|
json
|
|
embedded_itemsConnection {
|
|
edges {
|
|
node {
|
|
__typename
|
|
...ContentPageRef
|
|
...HotelPageRef
|
|
...LoyaltyPageRef
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |