import { gql } from "graphql-tag" import { System } from "../System.graphql" export const CollectionPageLink = gql` fragment CollectionPageLink on CollectionPage { title url system { ...System } web { original_url } } ${System} `