Files
web/lib/graphql/Fragments/Footer/SecondaryLinks.graphql
2024-09-04 14:07:57 +02:00

33 lines
536 B
GraphQL

fragment SecondaryLinks on Footer {
secondary_links {
title
links {
title
open_in_new_tab
pageConnection {
edges {
node {
__typename
... on AccountPage {
title
url
}
... on LoyaltyPage {
title
url
}
... on ContentPage {
title
url
}
}
}
}
link {
href
title
}
}
}
}