OBJECT

DefaultPanel

DefaultPanel is the normal panel type that displays text and images.

link GraphQL Schema definition

1type DefaultPanel implements Panel {
2
3# description is markdown-formatted text to be displayed below the title and
4# image.
5# If the panel doesn't have a description this will be null.
6description: String
7
8# id is a unique identifier for the panel.
9id: ID!
10
11# imageURL is a URL to an image to be displayed at the top of the panel (but below
12# the header).
13# If the panel doesn't use an image this will be null.
14imageURL: String
15
16# linkURL is the URL to navigate to when a user clicks on the image.
17# If the panel's image doesn't link anywhere this will be null.
18linkURL: String
19
20# title is the header text to display in the panel.
21# If the panel doesn't have a title this will return null.
22title: String
23
24# type is `PanelType.DEFAULT`.
25type: PanelType!
26
27}

link Required by

This element is not required by anyone