Advertisement
Guest User

Untitled

a guest
Apr 19th, 2022
268
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. ```
  2. GET /restaurants/_search
  3. {
  4. "query": {
  5. "bool": {
  6. "must": [
  7. {"wildcard": {
  8. "RestaurantName": {
  9. "value": "*delicious*"
  10. }
  11. }}
  12. ]
  13. }
  14. },
  15. "aggs": {
  16. "rating_ranges": {
  17. "range": {
  18. "field": "AggregateRating",
  19. "keyed": true,
  20. "ranges": [
  21. { "key": "bad", "to": 3.0 },
  22. { "key": "average", "from": 3.0, "to": 4.0 },
  23. { "key": "good", "from": 4.0 }
  24. ]
  25. }
  26. }
  27. }
  28. }
  29. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement