import { gql } from "graphql-tag" import { AccountPageRef } from "../../AccountPage/Ref.graphql" import { ContentPageRef } from "../../ContentPage/Ref.graphql" import { LoyaltyPageRef } from "../../LoyaltyPage/Ref.graphql" export const TertiaryLinksRef = gql` fragment TertiaryLinksRef on Footer { __typename tertiary_links { pageConnection { edges { node { __typename ...LoyaltyPageRef ...ContentPageRef ...AccountPageRef } } } } system { ...System } } ${LoyaltyPageRef} ${AccountPageRef} ${ContentPageRef} `