23 lines
440 B
GraphQL
23 lines
440 B
GraphQL
#import "../../Refs/LoyaltyPage/LoyaltyPage.graphql"
|
|
#import "../../Refs/MyPages/AccountPage.graphql"
|
|
#import "../../Refs/ContentPage/ContentPage.graphql"
|
|
|
|
fragment TertiaryLinksRef on Footer {
|
|
__typename
|
|
tertiary_links {
|
|
pageConnection {
|
|
edges {
|
|
node {
|
|
__typename
|
|
...LoyaltyPageRef
|
|
...ContentPageRef
|
|
...AccountPageRef
|
|
}
|
|
}
|
|
}
|
|
}
|
|
system {
|
|
...System
|
|
}
|
|
}
|