This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
va/Assignment2_part1/queries/query2a.http

33 lines
No EOL
506 B
HTTP

GET /restaurants/_search
{
"query": {
"bool": {
"must": [
{
"match": {
"name": "pizza"
}
}
],
"should": [
{
"match": {
"ratingText.keyword": "Very Good"
}
},
{
"match": {
"ratingText.keyword": "Excellent"
}
}
],
"must_not": [
{
"match": {
"name": "pasta"
}
}
]
}
}
}