39 lines
826 B
GraphQL
39 lines
826 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 ContentCardSidebar_ContentPage on ContentPageSidebarContentCard {
|
|
__typename
|
|
content_card {
|
|
theme
|
|
content_cardConnection {
|
|
edges {
|
|
node {
|
|
__typename
|
|
...TeaserCardBlock
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
fragment ContentCardSidebar_ContentPageRefs on ContentPageSidebarContentCard {
|
|
content_card {
|
|
content_cardConnection {
|
|
edges {
|
|
node {
|
|
__typename
|
|
...TeaserCardBlockRef
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|