feat(SW-186): implemented queries and typings for menu inside header query

This commit is contained in:
Erik Tiekstra
2024-08-27 12:44:50 +02:00
parent 99c0d7976f
commit d5aa2c9415
6 changed files with 130 additions and 50 deletions

View File

@@ -0,0 +1,22 @@
#import "../PageLink/ContentPageLink.graphql"
#import "../PageLink/LoyaltyPageLink.graphql"
fragment InternalOrExternalLink on InternalOrExternalLink {
is_external_link
open_in_new_tab
external_link {
href
title
}
page_link {
linkConnection {
edges {
node {
...ContentPageLink
...LoyaltyPageLink
}
}
}
link_title
}
}