feat(SW-2283): Added carousel cards block to campaign overview page

Approved-by: Christian Andolf
Approved-by: Matilda Landström
This commit is contained in:
Erik Tiekstra
2025-06-30 09:08:22 +00:00
parent 15c85163fd
commit 4229e9b11b
10 changed files with 127 additions and 5 deletions

View File

@@ -129,3 +129,35 @@ fragment CarouselCards_CampaignPageRefs on CampaignPageBlocksCarouselCards {
}
}
}
fragment CarouselCards_CampaignOverviewPage on CampaignOverviewPageBlocksCarouselCards {
carousel_cards {
heading
enable_filters
card_groups {
filter_label
filter_identifier
cardConnection {
edges {
node {
...ContentCardBlock
}
}
}
}
}
}
fragment CarouselCards_CampaignOverviewPageRefs on CampaignOverviewPageBlocksCarouselCards {
carousel_cards {
card_groups {
cardConnection {
edges {
node {
...ContentCardBlockRef
}
}
}
}
}
}