23 lines
398 B
GraphQL
23 lines
398 B
GraphQL
#import "../PageLink/ContentPageLink.graphql"
|
|
#import "../PageLink/LoyaltyPageLink.graphql"
|
|
|
|
fragment InternalOrExternalLink on InternalOrExternalLink {
|
|
is_external_link
|
|
open_in_new_tab
|
|
external_link {
|
|
href
|
|
title
|
|
}
|
|
page_link {
|
|
linkConnection {
|
|
edges {
|
|
node {
|
|
...ContentPageLink
|
|
...LoyaltyPageLink
|
|
}
|
|
}
|
|
}
|
|
link_title
|
|
}
|
|
}
|