INPUT_OBJECT
CreateApplication
link GraphQL Schema definition
1 input CreateApplication { 3 2 : ID 5 4 : Boolean 7 6 : String! 9 8 : String 11 10 : JSONData 13 12 : String 15 14 : String 17 16 : String 19 18 : String 22 20 # http protocol, localhost and * are not allowed 21 : String 24 23 : [EventSubscriptionInput] 26 25 : Int 28 27 : [String!] 30 29 : Boolean! 32 31 : [String] 34 33 : DeploymentModel 36 35 : AppCreateContextMenuExtensions 38 37 : String 40 39 : EngineDistributionType 43 41 # The application roles that need to be created for this application 42 : [CreateApplicationRole!] 46 44 # The tags associated with the application. 45 : [EntityTagInput] 51 47 # The resources which will be added to the new application's package. Any engines, 48 # flows, or data registries will also 49 # be added as components for the application. 50 : [ApplicationResourceInput] 53 52 : Boolean 56 54 # The headerbar configuration to be used with this application 55 : ApplicationHeaderbarInput 59 57 # This creates a config definition for an application 58 : [ApplicationConfigDefinitionInput] 62 60 # This creates events for an application 61 : [CreateAppEventInput] 66 63 # The node modules that need to be installed with the application and will be 64 # added to the same package as this application. 65 : [NodeModuleInput] 69 67 # Allow application to be created with initial status 68 : ApplicationStatus 75 70 # __Only superadmin tokens are allowed to set this flag.__ 71 # When true, disables the automatic creation of a new package when creating a new 72 # application 73 # Set to false by default. 74 : Boolean 76 }