I have written a query and I want only those Actualarrival time which are not null.As per the below query I am not getting as needed.It would be helpful if someone figure out the correction.
"nested": {
"path": "Banks",
"query": {
"bool": {
"must": [
{
"match": {
"Banks.Employees.Source_Geocode.keyword": "17.337203,78.467794"
}
},
{
"match": {
"Banks.Employees.Source_Geocode.keyword": "17.367891,78.468098"
}
},
{
"exists": {
"field": "Banks.Employees.ActualArrivalTime"
}
}
]
}
}
}
}