18 lines
331 B
Text
18 lines
331 B
Text
|
GET /restaurants/_search
|
||
|
{
|
||
|
"query": {
|
||
|
"bool": {
|
||
|
"must": [
|
||
|
{ "match": { "name": "pizza" } }
|
||
|
],
|
||
|
"should": [
|
||
|
{ "match": { "ratingText": "Very Good" } },
|
||
|
{ "match": { "ratingText": "Excellent" } }
|
||
|
],
|
||
|
"must_not": [
|
||
|
{ "match": { "name": "pasta" } }
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
}
|