INPUT_OBJECT

CreateApplicationViewer

link GraphQL Schema definition

1input CreateApplicationViewer {
4
2# The ID of the application viewer. If not provided, a new viewer will be created.
3id: ID
6
5name: String!
8
7description: String
11
9# URL for the icon image for the viewer
10icon: String
15
12# MIME type of the viewer, specifying the type of data that the viewer can
13# consume.
14mimetype: String!
18
16# The type of viewer. This can be 'external', 'container', or 'upload'.
17viewerType: ApplicationViewerType
22
19# A flag that indicates whether the viewer is publicly accessible across all
20# organizations.
21isPublic: Boolean
23}