INTERFACE

Panel

Panel is information about a single info panel for a channel.

link GraphQL Schema definition

1interface Panel {
2
3# id is a unique identifier for the panel.
4id: ID!
5
6# type is the kind of panel.
7type: PanelType!
8
9}