OBJECT

PanelView

PanelView holds the view configuration of an extension if the panel anchor is supported.

link GraphQL Schema definition

1type PanelView implements ExtensionView {
2
3# Specifies whether or not the extension has the ability to link to external
4# websites.
5canLinkExternalContent: Boolean!
6
7# The extension developer configured height of the panel extension.
8height: Int!
9
10# Relative path of the HTML file to load for this view, used by devsite to specify
11# the layout of assets.
12viewerPath: String!
13
14# The URL which should be loaded in for the extension.
15viewerURL: String!
16
17}