INPUT_OBJECT
CreateEngine
Input fields used to create a new engine.
link GraphQL Schema definition
1 input CreateEngine { 4 2 # Optional given id 3 ID : 10 5 # Indicates whether or not the engine should be public -- visible to and 6 # usable by users outside the creator's organization. 7 # Typically an engine should not be made public until it has been fully 8 # configured and tested in production. 9 Boolean : 13 11 # Human-readable name for the engine 12 String : 16 14 # An optional description for the engine. 15 String : 19 17 # The engine category 18 String! : 22 20 # The engine deployment model. See the DeploymentModel enum for options. 21 DeploymentModel! : 25 23 # An optional price indicator for the engine. 24 Int : 28 26 # Edge version. Default is 3. 27 Int : 32 29 # Optionally, supply custom fields that the user can set when launching 30 # the engine. See developer documentation for details. 31 CreateEngineField!] : [ 35 33 # Optionally, supply ID's of schemas that this engine will use as input schemas 34 EngineSchema] : [ 38 36 # The path for an icon image 37 String : 41 39 # The path for a logo image 40 String : 48 42 # Optionally, supply dependency information about this engine. 43 # Currently this field cannot be set through the API 44 # dependency: CreateEngineDependency 45 # 46 # Whether or not the engine requires a library. 47 Boolean : 51 49 # Whether or not the engine creates a TDO 50 Boolean : 54 52 # List of use cases the engine serves 53 String!] : [ 57 55 # List of industries where the capabilities of the engine can be applied 56 String!] : [ 60 58 # Generic Manifest for the engine based on data supplied during onboarding 59 JSONData : 63 61 # Testing detail includes necessary data for engine certification process 62 TestingDetailsField : 67 64 # JWT rights for engine, which is used for generating jwtToken rights later 65 # Limit jwtRights update to private engines only 66 JWTRightsField : 70 68 # Template Job definitions for standalone engine execution 69 CreateEngineJobTemplate!] : [ 73 71 # CPU Resources required for engine to run, in milli-CPUs 72 Int : 76 74 # CPU Resources required for engine to run, in milli-CPUs 75 GPUSupported : 79 77 # Engine or Organization homepage 78 String : 82 80 # In what way can this engine be distributed 81 EngineDistributionType : 85 83 # The tags associated with the engine 84 EntityTagInput] : [ 88 86 # Indicates the metadata version number 87 Int : 89 }