26 lines
528 B
GraphQL
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
|
|
}
|
|
}
|