Files
web/lib/graphql/Fragments/Blocks/Refs/Card.graphql
2024-05-21 15:23:06 +02:00

30 lines
469 B
GraphQL

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