Files
web/lib/graphql/Fragments/Sidebar/Content.graphql
2024-09-24 09:47:31 +02:00

81 lines
1.5 KiB
GraphQL

#import "../Image.graphql"
#import "../ImageContainer.graphql"
#import "../ContentPage/Ref.graphql"
#import "../LoyaltyPage/Ref.graphql"
#import "../PageLink/ContentPageLink.graphql"
#import "../PageLink/LoyaltyPageLink.graphql"
fragment ContentSidebar_ContentPage on ContentPageSidebarContent {
content {
content {
json
embedded_itemsConnection {
edges {
node {
__typename
...ContentPageLink
...Image
...ImageContainer
...LoyaltyPageLink
}
}
}
}
}
}
fragment ContentSidebar_ContentPageRefs on ContentPageSidebarContent {
content {
content {
embedded_itemsConnection {
edges {
node {
__typename
...ContentPageRef
...ImageContainerRef
...LoyaltyPageRef
}
}
}
}
}
}
fragment ContentSidebar_LoyaltyPage on LoyaltyPageSidebarContent {
content {
content {
json
embedded_itemsConnection {
edges {
node {
__typename
...ContentPageLink
...Image
...ImageContainer
...LoyaltyPageLink
}
}
}
}
}
}
fragment ContentSidebar_LoyaltyPageRefs on LoyaltyPageSidebarContent {
content {
content {
embedded_itemsConnection {
edges {
node {
__typename
...ContentPageRef
...ImageContainerRef
...LoyaltyPageRef
}
}
}
}
}
}