Hi,
I have some issues when fetching the results.
I want the result to be order exact as i give
{
"query": {
"bool": {
"should": [{
"match": {
"movie_id": "127"
}
}, {
"match": {
"movie_id": "111"
}
}, {
"match": {
"movie_id": "131"
}
}, {
"match": {
"movie_id": "106"
}
}]
}
}
}
i want it to be order in that exact order, but i am getting it in asc order even though i havent given any sort
i want it in the order 124,111,131,106
what is that i am missing