import { gql } from "graphql-tag" import { SysAsset } from "../SysAsset.graphql" export const TextBlock = gql` fragment TextBlock on CurrentBlocksPageBlocksText { text { content { embedded_itemsConnection { totalCount edges { node { __typename ...SysAsset } } } json } } } ${SysAsset} `