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