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