import { gql } from "graphql-tag" import { Jotform } from "../Jotform.graphql" export const Jotform_ContentPage = gql` fragment Jotform_ContentPage on ContentPageBlocksJotform { __typename jotform { formConnection { edges { node { ...Jotform } } } } } ${Jotform} `