fix: add all pages as possible references

This commit is contained in:
Christel Westerberg
2024-12-27 09:25:38 +01:00
parent 97f11a2488
commit c42a03803c
42 changed files with 319 additions and 74 deletions

View File

@@ -1,9 +1,13 @@
#import "../../Fragments/PageLink/AccountPageLink.graphql"
#import "../../Fragments/PageLink/ContentPageLink.graphql"
#import "../../Fragments/PageLink/LoyaltyPageLink.graphql"
#import "../../Fragments/PageLink/CollectionPageLink.graphql"
#import "../../Fragments/PageLink/HotelPageLink.graphql"
#import "../../Fragments/AccountPage/Ref.graphql"
#import "../../Fragments/ContentPage/Ref.graphql"
#import "../../Fragments/LoyaltyPage/Ref.graphql"
#import "../../Fragments/HotelPage/Ref.graphql"
#import "../../Fragments/CollectionPage/Ref.graphql"
#import "../../Fragments/System.graphql"
query GetNavigationMyPages($locale: String!) {
@@ -20,6 +24,8 @@ query GetNavigationMyPages($locale: String!) {
...AccountPageLink
...ContentPageLink
...LoyaltyPageLink
...CollectionPageLink
...HotelPageLink
}
}
}
@@ -42,6 +48,8 @@ query GetNavigationMyPagesRefs($locale: String!) {
...AccountPageRef
...ContentPageRef
...LoyaltyPageRef
...CollectionPageRef
...HotelPageRef
}
}
}