INPUT_OBJECT

UpdateApplication

link GraphQL Schema definition

1input UpdateApplication {
3
2id: ID!
5
4isPublic: Boolean
7
6name: String
9
8details: JSONData
11
10status: ApplicationStatus
13
12category: String
15
14description: String
17
16iconUrl: String
19
18iconSvg: String
21
20url: String
23
22metadataVersion: Int
25
24oauth2RedirectUrls: [String!]
27
26checkPermissions: Boolean
29
28permissionsRequired: [String!]
31
30deploymentModel: DeploymentModel
33
32contextMenuExtensions: UpdateContextMenuExtensions
35
34eventEndpoint: String
37
36packageDistributionType: EngineDistributionType
40
38# The tags associated with the application.
39entityTags: [EntityTagInput]
46
41# The resources which will be added to or removed from the application's package.
42# Any engines, flows, or
43# data registries will also be added to or removed from the list of components for
44# the application.
45resources: [ApplicationResourceUpdate]
48
47headerbarEnabled: Boolean
51
49# The headerbar configuration to be used with this application
50headerbar: ApplicationHeaderbarUpdate
55
52# The node modules that need to be installed with the application and will be
53# added to the same package as this application.
54nodeModules: [NodeModuleInput]
56}