INPUT_OBJECT
LayoutBuilderRowItemInput
Input for item in a row (can be either a block or a grid)
link GraphQL Schema definition
- input LayoutBuilderRowItemInput {
- # Unique identifier
- : String!
- # Item kind ('block' or 'grid')
- : String!
- # Name of the block (required if kind is 'block')
- : String
- # Name of the grid (required if kind is 'grid')
- : String
- # Style configuration
- : LayoutBuilderStyleInput
- # List of elements (for block items)
- : [LayoutBuilderElementInput!]
- # Number of rows in the grid (for grid items)
- : Int
- # Number of columns in the grid (for grid items)
- : Int
- # List of cells (for grid items)
- : [LayoutBuilderGridCellInput!]
- }