OBJECT
EngineCategory
link GraphQL Schema definition
1 type EngineCategory { 2 3 : ID! 4 5 : String 6 7 : String 8 9 : EngineType 10 11 # The engine class the engine category belongs to 12 : EngineClass 13 14 : DateTime 15 16 : DateTime 17 18 : String 19 20 : String 21 22 # The list of IDs of engines in this category 23 : [ID!] 24 25 : Int 26 27 : String 28 29 : Boolean 30 31 : Boolean 32 33 : String 34 35 # The list of engines in this category 36 # 37 # Arguments 38 # filter: Filters for engine attributes 39 # orderBy: Provide a list of EngineSortField to sort by. 40 ( 41 : Int, 42 : Int, 43 : EngineFilter, 44 : [EngineSortField] 45 ): EngineList 46 47 # If the engine category is integrated with libraries, this field contains 48 # the list of IDs of entity identifier types that the engine category is 49 # compatible 50 # with. 51 : [ID!] 52 53 # If the engine category is integrated with libraries, this field contains 54 # the list of entity identifier types that the engine category is compatible 55 # with. 56 : EntityIdentifierTypeList 57 58 # A type for the engine category. Multiple engine categories with common 59 # elements can share a categoryType. This information is used to compute 60 # dependencies and format user interface elements. 61 : String 62 63 # An optional key used to identify this engine category's results for 64 # search and other purposes. 65 # Primarily used by Veritone platform applications. 66 : String 67 68 # A list of categoryTypes on which instances of this engine category depend. 69 : [EngineDependency!] 70 71 # Information about how engine results in this category can be searched 72 # in Veritone platform applications. 73 # Used primarily by Veritone platform applications. 74 : EngineSearchConfiguration 75 76 # List of engine result export formats supported by engines in this 77 # category. May be empty. 78 : [ExportFormat]! 79 80 }
link Required by
- Engine
- EngineBlacklist
- EngineCategoryList
- EngineDependency
- EngineWhitelist
- QueryQueries are used to retrieve data. If you're new to our API, try the `me` query to explore the information you have access to. Hit `ctrl-space` at any time to activate field completion hints, and mouse over a field or parameter to see its documentation.