Hi all when running the query containing:
"bool": {
"must":
{
"term": {
"operators": [
"35",
"12",
"51",
"55",
"14",
"29"
]
}
}
sometimes the result is empty and sometimes it has values and I cant
make out why, full example at
The actual data has many "operators" this is just a simplified version
I cant figure why
"operators": [ "35", "12", "51", "55", "14", "19" ] fails
"operators": [ "35", "12", "51", "55", "14", "29" ] works
once a match is found does every following value have to be a match?
I am truing to replicate an SQL condition "where operators in ('35',
'12', "51', '55', '14', '29')"
Running elasticsearch 0.18.7 java version 7