OBJECT

LayoutBuilderGridItem

Grid item in a row

link GraphQL Schema definition

  • type LayoutBuilderGridItem {
  • # Unique identifier
  • id: String!
  • # Item kind (always 'grid')
  • kind: String!
  • # Name of the grid
  • name: String!
  • # Style configuration
  • style: LayoutBuilderStyle
  • # Number of rows in the grid (1-12)
  • rows: Int!
  • # Number of columns in the grid (1-12)
  • cols: Int!
  • # List of cells in this grid
  • cells: [LayoutBuilderGridCell!]!
  • }