Files
web/lib/graphql/Fragments/Blocks/Refs/LoyaltyCard.graphql
2025-01-07 10:46:56 +01:00

26 lines
528 B
GraphQL

#import "../../AccountPage/Ref.graphql"
#import "../../ContentPage/Ref.graphql"
#import "../../LoyaltyPage/Ref.graphql"
#import "../../HotelPage/Ref.graphql"
#import "../../CollectionPage/Ref.graphql"
fragment LoyaltyCardBlockRef on LoyaltyCard {
link {
linkConnection {
edges {
node {
__typename
...LoyaltyPageRef
...ContentPageRef
...AccountPageRef
...HotelPageRef
...CollectionPageRef
}
}
}
}
system {
...System
}
}