import { gql } from "graphql-tag" export const AllCampaigns = gql` fragment AllCampaigns on CampaignOverviewPageBlocksAllCampaigns { all_campaigns { heading preamble campaignsConnection { edges { node { ... on CampaignPage { url card_content { heading image text } system { locale } } ... on PromoCampaignPage { url card_content { heading image text } system { locale } } } } } } } `