feat(SW-186): Added refs and some extra querys

This commit is contained in:
Erik Tiekstra
2024-09-05 09:25:21 +02:00
parent 52fdc1daac
commit 55fdbc527b
11 changed files with 388 additions and 303 deletions

View File

@@ -1,11 +1,17 @@
#import "../Fragments/Refs/System.graphql"
#import "../Fragments/Header/InternalOrExternalLink.graphql"
#import "../Fragments/PageLink/ContentPageLink.graphql"
#import "../Fragments/PageLink/LoyaltyPageLink.graphql"
#import "../Fragments/PageLink/AccountPageLink.graphql"
#import "../Fragments/PageLink/ContentPageLink.graphql"
#import "../Fragments/PageLink/HotelPageLink.graphql"
#import "../Fragments/PageLink/LoyaltyPageLink.graphql"
#import "../Fragments/Blocks/Card.graphql"
#import "../Fragments/Blocks/Refs/Card.graphql"
#import "../Fragments/Refs/ContentPage/ContentPage.graphql"
#import "../Fragments/Refs/HotelPage/HotelPage.graphql"
#import "../Fragments/Refs/LoyaltyPage/LoyaltyPage.graphql"
#import "../Fragments/Refs/MyPages/AccountPage.graphql"
query GetHeader($locale: String!) {
all_header(limit: 1, locale: $locale) {
items {
@@ -15,6 +21,7 @@ query GetHeader($locale: String!) {
edges {
node {
...ContentPageLink
...HotelPageLink
...LoyaltyPageLink
}
}
@@ -26,6 +33,7 @@ query GetHeader($locale: String!) {
edges {
node {
...ContentPageLink
...HotelPageLink
...LoyaltyPageLink
}
}
@@ -36,6 +44,7 @@ query GetHeader($locale: String!) {
edges {
node {
...ContentPageLink
...HotelPageLink
...LoyaltyPageLink
}
}
@@ -49,6 +58,7 @@ query GetHeader($locale: String!) {
edges {
node {
...ContentPageLink
...HotelPageLink
...LoyaltyPageLink
}
}
@@ -70,6 +80,59 @@ query GetHeader($locale: String!) {
query GetHeaderRef($locale: String!) {
all_header(limit: 1, locale: $locale) {
items {
top_link {
linkConnection {
edges {
node {
...ContentPageRef
...HotelPageRef
...LoyaltyPageRef
}
}
}
}
menu_items {
linkConnection {
edges {
node {
...ContentPageRef
...HotelPageRef
...LoyaltyPageRef
}
}
}
see_all_link {
linkConnection {
edges {
node {
...ContentPageRef
...HotelPageRef
...LoyaltyPageRef
}
}
}
}
submenu {
links {
linkConnection {
edges {
node {
...ContentPageRef
...HotelPageRef
...LoyaltyPageRef
}
}
}
}
}
cardConnection {
edges {
node {
...CardBlockRef
}
}
}
}
system {
...System
}