OBJECT

LayoutBuilderRow

Row in a section

link GraphQL Schema definition

  • type LayoutBuilderRow {
  • # Unique identifier
  • id: String!
  • # Name of the row
  • name: String!
  • # Number of columns per row (1-12)
  • colsPerRow: Int!
  • # Layout mode (grid or flex)
  • layoutMode: String
  • # CSS flex-wrap value (nowrap or wrap)
  • flexWrap: String
  • # Style configuration
  • style: LayoutBuilderStyle
  • # List of items (blocks or grids) in this row
  • items: [LayoutBuilderRowItem!]!
  • }