Files
web/lib/graphql/Fragments/Footer/SecondaryLinks.graphql
2024-09-06 13:53:17 +02:00

32 lines
524 B
GraphQL

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