39 lines
818 B
GraphQL
39 lines
818 B
GraphQL
#import "../AccountPage/Ref.graphql"
|
|
#import "../ContentPage/Ref.graphql"
|
|
#import "../LoyaltyPage/Ref.graphql"
|
|
|
|
#import "../PageLink/AccountPageLink.graphql"
|
|
#import "../PageLink/ContentPageLink.graphql"
|
|
#import "../PageLink/LoyaltyPageLink.graphql"
|
|
|
|
#import "../Blocks/TeaserCard.graphql"
|
|
#import "../Blocks/Refs/TeaserCard.graphql"
|
|
|
|
fragment TeaserCardSidebar_ContentPage on ContentPageSidebarTeaserCard {
|
|
__typename
|
|
teaser_card {
|
|
theme
|
|
teaser_cardConnection {
|
|
edges {
|
|
node {
|
|
__typename
|
|
...TeaserCardBlock
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
fragment TeaserCardSidebar_ContentPageRefs on ContentPageSidebarTeaserCard {
|
|
teaser_card {
|
|
teaser_cardConnection {
|
|
edges {
|
|
node {
|
|
__typename
|
|
...TeaserCardBlockRef
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|