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