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 6f6a0a2e7c
commit ba4465da59
4 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
fragment MainLinksRef on Footer {
__typename
main_links {
pageConnection {
edges {
node {
__typename
...LoyaltyPageRef
...ContentPageRef
...AccountPageRef
}
}
}
}
system {
...System
}
}

View File

@@ -0,0 +1,20 @@
fragment SecondaryLinksRef on Footer {
__typename
secondary_links {
links {
pageConnection {
edges {
node {
__typename
...LoyaltyPageRef
...ContentPageRef
...AccountPageRef
}
}
}
}
}
system {
...System
}
}