Files
web/lib/graphql/Fragments/Blocks/Refs/Card.graphql
Christel Westerberg 323df671d8 fix: add loyaltyCard
2024-07-01 11:46:35 +02:00

31 lines
482 B
GraphQL

fragment CardBlockRef on Card {
__typename
secondary_button {
linkConnection {
edges {
node {
__typename
...LoyaltyPageRef
...ContentPageRef
...AccountPageRef
}
}
}
}
primary_button {
linkConnection {
edges {
node {
__typename
...LoyaltyPageRef
...ContentPageRef
...AccountPageRef
}
}
}
}
system {
...System
}
}