import { gql } from "graphql-tag" import { System } from "../System.graphql" export const StartPageLink = gql` fragment StartPageLink on StartPage { title url system { ...System } } ${System} `