Feature/turbopack * . * . * pin import-in-the-middle * update marker * revert back to using *.graphql.ts Approved-by: Linus Flood
22 lines
332 B
TypeScript
22 lines
332 B
TypeScript
import { gql } from "graphql-tag"
|
|
|
|
export const Grid = gql`
|
|
fragment Grid on Grid {
|
|
columns {
|
|
span
|
|
rows {
|
|
rowConnection {
|
|
edges {
|
|
node {
|
|
__typename
|
|
... on Card {
|
|
title
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
`
|