Advertisement
Guest User

Untitled

a guest
Dec 4th, 2016
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. {
  2. "multi_match" : {
  3. "query" : "this is a test",
  4. "fields" : [ "subject^2", "message" ]
  5. }
  6. }
  7.  
  8. {
  9. "multi_match" => {
  10. "query" => "list",
  11. "fields" => [ "username" ]
  12.  
  13. },
  14. "filter" => {
  15. "term" => { "username" => "slimkicker"}
  16. }
  17. }
  18.  
  19. {
  20. "query" : {
  21. "multi_match" {
  22. "query" : "this is a test",
  23. "fields" : [ "subject^2", "message" ]
  24. }
  25. },
  26. "filter" : {
  27. "term" : {"username":"slimkicker"}
  28. }
  29. }
  30.  
  31. {
  32. "query" :{
  33. "filtered" : {
  34. "query" : {
  35. "multi_match" : {
  36. "query" : "this is a test",
  37. "fields" : [ "subject^2", "message" ]
  38. }
  39. },
  40. "filter" : {
  41. "term" : {"username":"slimkicker"}
  42. }
  43. }
  44. }
  45. }
  46.  
  47. {
  48. "from" : 0,
  49. "size" : 10,
  50. "sort" : "publishDate",
  51. "query": {
  52. "bool": {
  53. "must" : {
  54. "multi_match" : {
  55. "query": "wedding",
  56. "type": "most_fields",
  57. "fields": [ "title", "text" ]
  58. }
  59. },
  60. "filter": {
  61. "term": {
  62. "locale": "english"
  63. }
  64. }
  65. }
  66. }
  67. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement