INPUT_OBJECT
EngineFilter
link GraphQL Schema definition
1 input EngineFilter { 4 2 # Name of engine to filter by 3 String : 7 5 # Search by exact name(case insensitive) 6 String : 10 8 # Provide a list of engine states to filter by 9 EngineState!] : [ 13 11 # Language supported by the engine 12 String : 16 14 # Provide a list of engine category names to filter by 15 String!] : [ 19 17 # Filter engines that require a library 18 Boolean : 22 20 # Provide a list of engine type names to filter by 21 EngineTypeFilter!] : [ 25 23 # Provide a list of rating from 0 to 5 to filter by. 24 Int] : [ 28 26 # Specify the deployment model of the engine. 27 DeploymentModel : 31 29 # Provide a list of deployment models to filter by 30 DeploymentModel!] : [ 34 32 # Provide a list of distribution types to filter by 33 EngineDistributionType!] : [ 37 35 # Specify the minimum price of the engine. 36 Int : 40 38 # Specify the maximum price of the engine. 39 Int : 43 41 # Specify the minimum FedRamp impact level of the engine. 42 Int : 46 44 # Specify the minimum FedRamp impact level of the engine. 45 Int : 49 47 # Filter engines that can be trainable via API. 48 Boolean : 52 50 # Filter engines by cluster size. 51 ClusterSize : 55 53 # Provide a list of cluster sizes to filter by 54 ClusterSize!] : [ 58 56 # Filter engines by gpu supported. 57 SupportedGPU : 61 59 # Provide a list of supported gpus to filter by 60 SupportedGPU!] : [ 64 62 # Provide a list of engine modes to filter by 63 EngineMode!] : [ 67 65 # Types of engine runtime to filter by. nodeRed or notebook 66 String] : [ 70 68 # Provide a list of engine runtime types to filter by 69 String!] : [ 73 71 # Provide a list of supported input formats to filter by 72 String!] : [ 76 74 # Filter engines by max media length in ms 75 Int : 79 77 # Filter engines that are certified 78 Boolean : 82 80 # Filter engines that are public 81 Boolean : 85 83 # Filter by date/time field 84 EngineDateTimeFilter!] : [ 88 86 # Filter logical operation ( AND, OR ) 87 filterCombineOperator : 91 89 # Filter by tags associated with engines 90 EntityTagFilter] : [ 97 92 # Filter by a list of input types that an engine's single engine jobs support. 93 # When matchAny is true, engines will be returned if they support ANY of the input 94 # types. When matchAny is false or not defined, engines will be returned if they 95 # support ALL of the input types. 96 EngineTemplateInputTypes : 98 }