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 - } -}