import { gql } from "graphql-tag" export const SecondaryLinks = gql` fragment SecondaryLinks on Footer { secondary_links { title links { title open_in_new_tab pageConnection { edges { node { __typename } } } link { href title } } } } `