mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
Add autocomplete support for all field types (#216765)
This commit is contained in:
parent
50c2237757
commit
00e776f166
1 changed files with 30 additions and 15 deletions
|
@ -47,24 +47,39 @@ export const mappings = (specService: SpecDefinitionsService) => {
|
|||
'*': {
|
||||
type: {
|
||||
__one_of: [
|
||||
'text',
|
||||
'keyword',
|
||||
'float',
|
||||
'half_float',
|
||||
'scaled_float',
|
||||
'double',
|
||||
'byte',
|
||||
'short',
|
||||
'integer',
|
||||
'long',
|
||||
'date',
|
||||
'boolean',
|
||||
'alias',
|
||||
'binary',
|
||||
'object',
|
||||
'nested',
|
||||
'boolean',
|
||||
'completion',
|
||||
'constant_keyword',
|
||||
'date',
|
||||
'date_nanos',
|
||||
'dense_vector',
|
||||
'flattened',
|
||||
'geo_point',
|
||||
'geo_shape',
|
||||
'dense_vector',
|
||||
'histogram',
|
||||
'ip',
|
||||
'join',
|
||||
'keyword',
|
||||
'match_only_text',
|
||||
'nested',
|
||||
'numeric',
|
||||
'object',
|
||||
'passthrough',
|
||||
'percolator',
|
||||
'point',
|
||||
'range',
|
||||
'rank_feature',
|
||||
'rank_features',
|
||||
'search_as_you_type',
|
||||
'semantic_text',
|
||||
'shape',
|
||||
'sparse_vector',
|
||||
'text',
|
||||
'token_count',
|
||||
'version',
|
||||
'wildcard',
|
||||
],
|
||||
},
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue