I start using 5.2.2
I am adding documents with dot in field name i.e
im.name , im.type
looking at this mapping :
"im":{
"properties":{
"name":{"type": "text", "analyzer": "whitespace"},
"type":{"type": "text", "analyzer": "whitespace"}
}
}
why the im doesn't have "object" type as described [here] (https://www.elastic.co/guide/en/elasticsearch/reference/2.4/dots-in-names.html)
?
how can I get all fields key set ?
e.g im.name , im.type ...
if I query the properties field I am getting just the first level key set (im)