GET blogs_fixed/_search
{
"query": {
"query_string" : {
"query" : "(content:elasticsearch AND content:engineering) OR (title:elasticsearch AND title:engineering)"
}
}
}
GET blogs_fixed/_search
{
"query": {
"bool": {
"should": [
{
"bool": {
"must": [
{
"match": {
"content": "elasticsearch"
}
},
{
"match": {
"content": "engineering"
}
}
]
}
},
{
"bool": {
"must": [
{
"match": {
"title": "elasticsearch"
}
},
{
"match": {
"title": "engineering"
}
}
]
}
}
],
"minimum_should_match": 1
}
}
}