e9bd159e98
Use turbopack for dev builds. Remove graphql-tag/loader, replaced by gql`` tag literals instead. Approved-by: Linus Flood
22 lines
298 B
TypeScript
22 lines
298 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
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
`
|