30 lines
641 B
Plaintext
30 lines
641 B
Plaintext
|
[[query-dsl-or-query]]
|
||
|
== Or Query
|
||
|
|
||
|
deprecated[2.0.0, Use the `bool` query instead]
|
||
|
|
||
|
A query that matches documents using the `OR` boolean operator on other
|
||
|
queries.
|
||
|
|
||
|
[source,js]
|
||
|
--------------------------------------------------
|
||
|
{
|
||
|
"filtered" : {
|
||
|
"query" : {
|
||
|
"term" : { "name.first" : "shay" }
|
||
|
},
|
||
|
"filter" : {
|
||
|
"or" : [
|
||
|
{
|
||
|
"term" : { "name.second" : "banon" }
|
||
|
},
|
||
|
{
|
||
|
"term" : { "name.nick" : "kimchy" }
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
--------------------------------------------------
|
||
|
|