I have the dump of elasticsearch in which a field named as "journey"
under that i have multiple values like, Indian, Australia, Dubai etc.,.
I need to write a query for which i will provide list of journey values that are to be returned (like India and dubai in above example)
I have written a code like this
{
"filter": {
"terms": {
"journey": [
"India",
"Dubai"
]
}
}
}
but i an not getting the results.