import { gql } from "graphql-tag" export const Grid = gql` fragment Grid on Grid { columns { span rows { rowConnection { edges { node { __typename ... on Card { title } } } } } } } `