Hi there,
Let's say I define the index like below
PUT my_index/_doc/1
{
"user": [
{
"first": "John",
"last": "Frank"
},
{
"first": "Hero",
"last": "Tim"
}
]
}
PUT my_index/_doc/2
{
"user": [
{
"firstName": "John",
"lastName": "Term"
},
{
"firstName": "David",
"lastName": "Gayle"
}
]
}
If I want to list all the user surname whose firstName is John in Data Table visualization, is there a way to accomplish this?