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