#import "./Card.graphql" #import "./LoyaltyCard.graphql" #import "./TeaserCard.graphql" #import "./Refs/Card.graphql" #import "./Refs/LoyaltyCard.graphql" #import "./Refs/TeaserCard.graphql" fragment CardsGrid_ContentPage on ContentPageBlocksCardsGrid { cards_grid { layout preamble theme title cardConnection(limit: 10) { edges { node { __typename ...CardBlock ...LoyaltyCardBlock ...TeaserCardBlock } } } } } fragment CardsGrid_ContentPageRefs on ContentPageBlocksCardsGrid { cards_grid { cardConnection(limit: 10) { edges { node { __typename ...CardBlockRef ...LoyaltyCardBlockRef ...TeaserCardBlockRef } } } } } fragment CardsGrid_LoyaltyPage on LoyaltyPageBlocksCardsGrid { cards_grid { layout preamble theme title cardConnection(limit: 10) { edges { node { __typename ...CardBlock ...LoyaltyCardBlock } } } } } fragment CardsGrid_LoyaltyPageRefs on LoyaltyPageBlocksCardsGrid { cards_grid { cardConnection(limit: 10) { edges { node { __typename ...CardBlockRef ...LoyaltyCardBlockRef } } } } }