INPUT_OBJECT

ComponentViewInput

The view configuration of an extension if the component anchor is supported.

link GraphQL Schema definition

1input ComponentViewInput {
5
2# The developer configured height of the extension as a ratio relative to it's
3# width.
4aspectHeight: Int!
9
6# The developer configured width of the extension as a ratio relative to it's
7# height.
8aspectWidth: Int!
14
10# Specifies whether CSS zooming should be applied to the CE container, creating a
11# consistent
12# size of 1024 pixels along the long edge of the component. Default: true.
13hasZoom: Boolean!
19
15# Size of the long edge of the Component Extension, relative to the length of the
16# corresponding
17# interactable dimension of the video.
18size: Float!
22
20# Relative path of the HTML file to load for this view.
21viewerPath: String!
27
23# If hasZoom is set to true, specify the effective CSS zoom to apply to the long
24# edge of the CE.
25# Default: 1024.
26zoomPixels: Int
28}