Weird query behavior - boolean

Hello,

I'm VERY new to ES.

I indexed some documents (Type=Location) that has a boolean field named:
isAbroad.
the mapping looks like this:
"isAbroad": {"type": "boolean"}
I have documents for both true and false for that field in ES.
Where I query:
{
"query": {
"term": {
"isAbroad": true
}
}
}
I get valid results (13 hits).

but when I run:
{
"query": {
"term": {
"isAbroad": false
}
}
}
I get 0 hits.

Any ideas?

Thanks,
Liron

--
You received this message because you are subscribed to the Google Groups "elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email to elasticsearch+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Please disregard the question.
(stupid newbie mistake)

--
You received this message because you are subscribed to the Google Groups "elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email to elasticsearch+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.