Hello
I have created following index
PUT my-index-000001
{
"mappings": {
"properties": {
"users": {
"type": "nested"
}
}
}
}
PUT my-index-000001/_doc/1
{
"group" : "fans",
"users" : [
{
"first" : "John",
"last" : "Smith"
},
{
"first" : "Alice",
"last" : "White"
}
]
}
In Discover tab I see information that this field is unindexed
However this query works fine
GET my-index-000001/_search
{
"query": {
"nested": {
"path": "users",
"query": {
"bool": {
"must": [
{ "match": { "users.first": "John" }},
{ "match": { "users.last": "Smith" }}
]
}
}
}
}
}
Why this unindexed alert occured?