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