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
1 type 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. 6 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. 11 SearchFieldConfig!] : [ 12 13 # Indicates whether or not search is available for results produced 14 # by engines in this category can be searched. 15 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. 19 Boolean : 20 21 String : 22 23 String : 24 25 }