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