Advertisement
madrahimov

Untitled

Jun 2nd, 2022
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.80 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": "resumes"
  30. },
  31. "aggs": {
  32. "filtered": {
  33. "filter": {
  34. "bool": {
  35. "must": {
  36. "match": {
  37. "resumes.actual": true
  38. }
  39. }
  40. }
  41. },
  42. "aggs": {
  43. "by_citizenship": {
  44. "nested": {
  45. "path": "resumes.citizenship"
  46. },
  47. "aggs": {
  48. "citizenship": {
  49. "terms": {
  50. "field": "resumes.citizenship.name"
  51. }
  52. }
  53. }
  54. }
  55. }
  56. }
  57. }
  58. }
  59. },
  60. "_source": false
  61. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement