Advertisement
Guest User

Untitled

a guest
Jul 15th, 2017
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. let jsonObject = {
  2.         "from": from,
  3.         "size": 3,
  4.         "query": {
  5.              "function_score": {
  6.                     "filter": {
  7.                         "and": [
  8.                             {
  9.                                 "term" : {"propertyName" : "hot"}
  10.                             },
  11.                             {
  12.                                 "term" : {"active" : true}
  13.                             }
  14.                         ]
  15.                     },
  16.                     "functions": [
  17.                         {
  18.                             "random_score": {
  19.                                 seed: seed
  20.                             }
  21.                         }
  22.                     ]
  23.                 }
  24.         }
  25.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement