INPUT_OBJECT

UpdateApplication

link GraphQL Schema definition

1input UpdateApplication {
3
2id: ID!
5
4isPublic: Boolean
7
6name: String
9
8status: ApplicationStatus
11
10category: String
13
12description: String
15
14iconUrl: String
17
16iconSvg: String
19
18url: String
21
20oauth2RedirectUrls: [String!]
23
22checkPermissions: Boolean
25
24permissionsRequired: [String!]
27
26deploymentModel: DeploymentModel
29
28contextMenuExtensions: UpdateContextMenuExtensions
31
30eventEndpoint: String
34
32# The tags associated with the application.
33entityTags: [EntityTagInput]
38
35# The resources (engines, flows, and schemas) which will be added
36# to the new application in the form of components and package resources.
37resources: [ApplicationResourceUpdate]
40
39headerbarEnabled: Boolean
43
41# The headerbar configuration to be used with this application
42headerbar: ApplicationHeaderbarUpdate
47
44# The node modules that need to be installed with the application and will be
45# added to the same package as this application.
46nodeModules: [NodeModuleInput]
48}