OBJECT

ExtensionPanel

ExtensionPanel is a placeholder in the panel list for arbitrary iframed content.

link GraphQL Schema definition

1type ExtensionPanel implements Panel {
2
3# id is a unique identifier for the panel.
4id: ID!
5
6# slotID is an identifier to map extensions content from `User.extensions` to the
7# proper place in the `User.panels` list.
8slotID: ID!
9
10# type is `PanelType.EXTENSION`.
11type: PanelType!
12
13}

link Required by

This element is not required by anyone