Advertisement
Guest User

Query

a guest
Oct 20th, 2015
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.09 KB | None | 0 0
  1. {
  2.   "from": 0,
  3.   "size": 20,
  4.   "timeout": 5000,
  5.   "query": {
  6.     "function_score": {
  7.       "query": {
  8.         "bool": {
  9.           "must": {
  10.             "match": {
  11.               "fullString": {
  12.                 "query": "Charlie Feathers",
  13.                 "type": "boolean",
  14.                 "operator": "OR",
  15.                 "cutoff_frequency": 0.01
  16.               }
  17.             }
  18.           },
  19.           "must_not": {
  20.             "term": {
  21.               "isHidden": "true"
  22.             }
  23.           },
  24.           "should": [
  25.             {
  26.               "match": {
  27.                 "fullString.token": {
  28.                   "query": "Charlie Feathers",
  29.                   "type": "phrase"
  30.                 }
  31.               }
  32.             },
  33.             {
  34.               "match": {
  35.                 "fullString.edgeNGNoSplit": {
  36.                   "query": "Charlie Feathers",
  37.                   "type": "phrase"
  38.                 }
  39.               }
  40.             }
  41.           ]
  42.         }
  43.       },
  44.       "field_value_factor": {
  45.         "field": "popularity"
  46.       }
  47.     }
  48.   },
  49.   "explain": false
  50. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement