OBJECT
LayoutBuilderGridItem
Grid item in a row
link GraphQL Schema definition
- type LayoutBuilderGridItem {
- # Unique identifier
- : String!
- # Item kind (always 'grid')
- : String!
- # Name of the grid
- : String!
- # Style configuration
- : LayoutBuilderStyle
- # Number of rows in the grid (1-12)
- : Int!
- # Number of columns in the grid (1-12)
- : Int!
- # List of cells in this grid
- : [LayoutBuilderGridCell!]!
- }