import { gql } from "graphql-tag" import { CardBlock } from "../Blocks/Card.graphql" export const ScriptedCardSidebar_ContentPage = gql` fragment ScriptedCardSidebar_ContentPage on ContentPageSidebarScriptedCard { __typename scripted_card { theme scripted_cardConnection { edges { node { __typename ...CardBlock } } } } } ${CardBlock} `