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

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
}
}