From 5ef8c1e3566afeba85522f244ff35c231a3bbd26 Mon Sep 17 00:00:00 2001 From: Pontus Dreij Date: Mon, 26 Aug 2024 13:20:54 +0200 Subject: [PATCH] feat(SW-187): moved footer fragments to CurrentFooter folder --- .../Fragments/Footer/AppDownloads.graphql | 12 ----------- .../Fragments/Footer/Refs/MainLinks.graphql | 18 ----------------- .../Footer/Refs/SecondaryLinks.graphql | 20 ------------------- 3 files changed, 50 deletions(-) delete mode 100644 lib/graphql/Fragments/Footer/AppDownloads.graphql delete mode 100644 lib/graphql/Fragments/Footer/Refs/MainLinks.graphql delete mode 100644 lib/graphql/Fragments/Footer/Refs/SecondaryLinks.graphql diff --git a/lib/graphql/Fragments/Footer/AppDownloads.graphql b/lib/graphql/Fragments/Footer/AppDownloads.graphql deleted file mode 100644 index f9e2f7d40..000000000 --- a/lib/graphql/Fragments/Footer/AppDownloads.graphql +++ /dev/null @@ -1,12 +0,0 @@ -fragment AppDownloads on Footer { - app_downloads { - title - links { - type - href { - href - title - } - } - } -} diff --git a/lib/graphql/Fragments/Footer/Refs/MainLinks.graphql b/lib/graphql/Fragments/Footer/Refs/MainLinks.graphql deleted file mode 100644 index cea5340f4..000000000 --- a/lib/graphql/Fragments/Footer/Refs/MainLinks.graphql +++ /dev/null @@ -1,18 +0,0 @@ -fragment MainLinksRef on Footer { - __typename - main_links { - pageConnection { - edges { - node { - __typename - ...LoyaltyPageRef - ...ContentPageRef - ...AccountPageRef - } - } - } - } - system { - ...System - } -} diff --git a/lib/graphql/Fragments/Footer/Refs/SecondaryLinks.graphql b/lib/graphql/Fragments/Footer/Refs/SecondaryLinks.graphql deleted file mode 100644 index d324e40b1..000000000 --- a/lib/graphql/Fragments/Footer/Refs/SecondaryLinks.graphql +++ /dev/null @@ -1,20 +0,0 @@ -fragment SecondaryLinksRef on Footer { - __typename - secondary_links { - links { - pageConnection { - edges { - node { - __typename - ...LoyaltyPageRef - ...ContentPageRef - ...AccountPageRef - } - } - } - } - } - system { - ...System - } -}