57 lines
893 B
GraphQL
57 lines
893 B
GraphQL
fragment CardBlock on Card {
|
|
is_content_card
|
|
heading
|
|
body_text
|
|
background_image
|
|
scripted_top_title
|
|
title
|
|
has_primary_button
|
|
has_secondary_button
|
|
has_sidepeek_button
|
|
primary_button {
|
|
is_contentstack_link
|
|
cta_text
|
|
open_in_new_tab
|
|
external_link {
|
|
title
|
|
href
|
|
}
|
|
linkConnection {
|
|
edges {
|
|
node {
|
|
__typename
|
|
...LoyaltyPageLink
|
|
...ContentPageLink
|
|
...AccountPageLink
|
|
}
|
|
}
|
|
}
|
|
}
|
|
secondary_button {
|
|
is_contentstack_link
|
|
cta_text
|
|
open_in_new_tab
|
|
external_link {
|
|
title
|
|
href
|
|
}
|
|
linkConnection {
|
|
edges {
|
|
node {
|
|
__typename
|
|
...LoyaltyPageLink
|
|
...ContentPageLink
|
|
...AccountPageLink
|
|
}
|
|
}
|
|
}
|
|
}
|
|
sidepeek_button {
|
|
call_to_action_text
|
|
}
|
|
system {
|
|
locale
|
|
uid
|
|
}
|
|
}
|