import { gql } from "graphql-tag" import { SysAsset } from "./SysAsset.graphql" export const Hero = gql` fragment Hero on Hero { imagesConnection { totalCount edges { node { ...SysAsset } } } } ${SysAsset} `