import { gql } from "graphql-tag" import { System } from "./System.graphql" export const Jotform = gql` fragment Jotform on Jotform { form_id } ` export const JotformRef = gql` fragment JotformRef on Jotform { system { ...System } } ${System} `