Skip to main content

GroupBlock

Block used to group other blocks together for spacing purposes.

By default all blocks are displayed with justify-content: space-between, so if you want some blocks to appear close together in a "group" you can use this block with any children blocks.

type GroupBlock implements Block {
centered: Boolean
children: [AllBlockTypes!]!
link: BlockLink
}

Fields

GroupBlock.centered ● Boolean scalar

GroupBlock.children ● [AllBlockTypes!]! non-null union

Interfaces

Block interface

Base interface that all block types implement.

A "Block" is a UI component that report pages are made up of. The block names correspond to react components on the frontend.

Implemented By

AllBlockTypes union