Files
web/lib/graphql/Fragments/Grid.graphql

18 lines
236 B
GraphQL

fragment Grid on Grid {
columns {
span
rows {
rowConnection {
edges {
node {
__typename
... on Card {
title
}
}
}
}
}
}
}