Advertisement
madrahimov

Untitled

Jun 2nd, 2022
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. {
  2. "profile": true,
  3. "sort": [
  4. {
  5. "id": {
  6. "order": "asc"
  7. }
  8. }
  9. ],
  10. "query": {
  11. "nested": {
  12. "path": "resumes",
  13. "query": {
  14. "multi_match": {
  15. "query": " Системный аналитик",
  16. "type": "most_fields",
  17. "fields": [
  18. "resumes.cv_text",
  19. "resumes.transliterated_cv_text"
  20. ],
  21. "operator": "and"
  22. }
  23. }
  24. }
  25. },
  26. "aggs": {
  27. "citizenships": {
  28. "nested": {
  29. "path": "citizenship"
  30. },
  31. "aggs": {
  32. "citizenship": {
  33. "terms": {
  34. "field": "citizenship.name"
  35. }
  36. }
  37. }
  38. }
  39. },
  40. "_source": false
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement