OBJECT

EngineSearchConfiguration

Represents configuration on how the results of engines within a given category are indexed and searched. Primarily used by Veritone platform applications.

link GraphQL Schema definition

1type EngineSearchConfiguration {
2
3# Autocomplete field information is used to tell client applications
4# what fields are searchable by autocomplete in the search index and
5# how to search for them.
6autocompleteFields: [AutocompleteFieldConfig!]
7
8# Autocomplete field information is used to tell client applications
9# what fields are searchable in the search index and
10# how to search for them.
11searchFields: [SearchFieldConfig!]
12
13# Indicates whether or not search is available for results produced
14# by engines in this category can be searched.
15isSearchEnabled: Boolean
16
17# Indicates whether or not search is available for results produced
18# by engines in this category can be searched within the Elasticsearch index.
19isElasticEnabled: Boolean
20
21searchMetadataKey: String
22
23elasticType: String
24
25}