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/query2c.http

39 lines
707 B
Text
Raw Normal View History

2023-04-24 08:26:23 +00:00
GET /restaurants/_search
{
"query": {
"bool": {
"must": [
{
"regexp": {
"name": {
"value": ".*pizz.*",
"flags": "ALL",
"case_insensitive": true
}
}
}
],
"must_not": [
{
"regexp": {
"name": {
"value": ".*pizza.*",
"flags": "ALL",
"case_insensitive": true
}
}
},
{
"regexp": {
"name": {
"value": ".*pizzeria.*",
"flags": "ALL",
"case_insensitive": true
}
}
}
]
}
}
}