INPUT_OBJECT

LayoutBuilderGridCellInput

Input for cell in a grid item

link GraphQL Schema definition

  • input LayoutBuilderGridCellInput {
  • # Unique identifier
  • id: String
  • # Editor label for this cell
  • name: String
  • # Style configuration
  • style: LayoutBuilderStyleInput
  • # List of elements in this cell
  • elements: [LayoutBuilderElementInput!]!
  • # Number of columns spanned by this cell (1-12)
  • colSpan: Int!
  • # Number of rows spanned by this cell (1-12)
  • rowSpan: Int!
  • # 1-based column line the cell starts at (null = auto-placed)
  • colStart: Int
  • # 1-based row line the cell starts at (null = auto-placed)
  • rowStart: Int
  • }