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

@@ -5,11 +5,13 @@
#import "../ContentPage/Ref.graphql"
#import "../HotelPage/Ref.graphql"
#import "../LoyaltyPage/Ref.graphql"
#import "../CollectionPage/Ref.graphql"
#import "../PageLink/AccountPageLink.graphql"
#import "../PageLink/ContentPageLink.graphql"
#import "../PageLink/HotelPageLink.graphql"
#import "../PageLink/LoyaltyPageLink.graphql"
#import "../PageLink/CollectionPageLink.graphql"
fragment Content_ContentPage on ContentPageBlocksContent {
content {
@@ -20,6 +22,7 @@ fragment Content_ContentPage on ContentPageBlocksContent {
__typename
...AccountPageLink
...ContentPageLink
...CollectionPageLink
...HotelPageLink
...LoyaltyPageLink
...ImageContainer
@@ -40,6 +43,7 @@ fragment Content_ContentPageRefs on ContentPageBlocksContent {
__typename
...AccountPageRef
...ContentPageRef
...CollectionPageRef
...HotelPageRef
...LoyaltyPageRef
...ImageContainerRef
@@ -63,6 +67,8 @@ fragment Content_LoyaltyPage on LoyaltyPageBlocksContent {
...Image
...ImageContainer
...LoyaltyPageLink
...CollectionPageLink
...HotelPageLink
}
}
}
@@ -81,6 +87,8 @@ fragment Content_LoyaltyPageRefs on LoyaltyPageBlocksContent {
...ContentPageRef
...ImageContainerRef
...LoyaltyPageRef
...CollectionPageRef
...HotelPageRef
}
}
}