40 lines
785 B
GraphQL
40 lines
785 B
GraphQL
#import "../../AccountPage/Ref.graphql"
|
|
#import "../../ContentPage/Ref.graphql"
|
|
#import "../../LoyaltyPage/Ref.graphql"
|
|
#import "../../CollectionPage/Ref.graphql"
|
|
#import "../../HotelPage/Ref.graphql"
|
|
|
|
fragment CardBlockRef on Card {
|
|
secondary_button {
|
|
linkConnection {
|
|
edges {
|
|
node {
|
|
__typename
|
|
...AccountPageRef
|
|
...ContentPageRef
|
|
...LoyaltyPageRef
|
|
...CollectionPageRef
|
|
...HotelPageRef
|
|
}
|
|
}
|
|
}
|
|
}
|
|
primary_button {
|
|
linkConnection {
|
|
edges {
|
|
node {
|
|
__typename
|
|
...AccountPageRef
|
|
...ContentPageRef
|
|
...LoyaltyPageRef
|
|
...CollectionPageRef
|
|
...HotelPageRef
|
|
}
|
|
}
|
|
}
|
|
}
|
|
system {
|
|
...System
|
|
}
|
|
}
|