Revert gql * Revert "Merged in fix/system-fragment (pull request #3102)" This reverts commit0d479eb337. * Revert "Merged in chore/replace-graphql-tag/loader (pull request #3096)" This reverts commite9bd159e98.
39 lines
810 B
GraphQL
39 lines
810 B
GraphQL
#import "../AccountPage/Ref.graphql"
|
|
#import "../ContentPage/Ref.graphql"
|
|
#import "../LoyaltyPage/Ref.graphql"
|
|
|
|
#import "../PageLink/AccountPageLink.graphql"
|
|
#import "../PageLink/ContentPageLink.graphql"
|
|
#import "../PageLink/LoyaltyPageLink.graphql"
|
|
|
|
#import "../Blocks/Card.graphql"
|
|
#import "../Blocks/Refs/Card.graphql"
|
|
|
|
fragment ScriptedCardSidebar_ContentPage on ContentPageSidebarScriptedCard {
|
|
__typename
|
|
scripted_card {
|
|
theme
|
|
scripted_cardConnection {
|
|
edges {
|
|
node {
|
|
__typename
|
|
...CardBlock
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
fragment ScriptedCardSidebar_ContentPageRefs on ContentPageSidebarScriptedCard {
|
|
scripted_card {
|
|
scripted_cardConnection {
|
|
edges {
|
|
node {
|
|
__typename
|
|
...CardBlockRef
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|