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
  • id: String!
  • # Item kind ('block' or 'grid')
  • kind: String!
  • # Name of the block (required if kind is 'block')
  • blockName: String
  • # Name of the grid (required if kind is 'grid')
  • name: String
  • # Style configuration
  • style: LayoutBuilderStyleInput
  • # List of elements (for block items)
  • elements: [LayoutBuilderElementInput!]
  • # Number of rows in the grid (for grid items)
  • rows: Int
  • # Number of columns in the grid (for grid items)
  • cols: Int
  • # List of cells (for grid items)
  • cells: [LayoutBuilderGridCellInput!]
  • }