feat(SW-187): moved footer fragments to CurrentFooter folder

This commit is contained in:
Pontus Dreij
2024-08-26 13:20:54 +02:00
parent 18de55fad1
commit 9fab84a0f9
4 changed files with 0 additions and 0 deletions
@@ -0,0 +1,18 @@
fragment MainLinksRef on Footer {
__typename
main_links {
pageConnection {
edges {
node {
__typename
...LoyaltyPageRef
...ContentPageRef
...AccountPageRef
}
}
}
}
system {
...System
}
}
@@ -0,0 +1,20 @@
fragment SecondaryLinksRef on Footer {
__typename
secondary_links {
links {
pageConnection {
edges {
node {
__typename
...LoyaltyPageRef
...ContentPageRef
...AccountPageRef
}
}
}
}
}
system {
...System
}
}