OBJECT

EngineCategory

link GraphQL Schema definition

1type EngineCategory {
2
3id: ID!
4
5name: String
6
7description: String
8
9type: EngineType
10
11# The engine class the engine category belongs to
12class: EngineClass
13
14createdDateTime: DateTime
15
16modifiedDateTime: DateTime
17
18createdBy: String
19
20modifiedBy: String
21
22# The list of IDs of engines in this category
23engineIds: [ID!]
24
25totalEngines: Int
26
27iconClass: String
28
29editable: Boolean
30
31videoOnly: Boolean
32
33color: 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.
40engines(
41offset: Int,
42limit: Int,
43filter: EngineFilter,
44orderBy: [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.
51libraryEntityIdentifierTypeIds: [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.
56libraryEntityIdentifierTypes: 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.
61categoryType: 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.
66categoryMetadataKey: String
67
68# A list of categoryTypes on which instances of this engine category depend.
69dependencies: [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.
74searchConfiguration: EngineSearchConfiguration
75
76# List of engine result export formats supported by engines in this
77# category. May be empty.
78exportFormats: [ExportFormat]!
79
80}