Advertisement
Guest User

Untitled

a guest
Mar 28th, 2017
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 2.75 KB | None | 0 0
  1. {
  2.    "size":500,
  3.    "query":{
  4.       "bool":{
  5.          "should":[
  6.             {
  7.                "match":{
  8.                   "features.celebrities.text":{
  9.                      "query":".*acronis.*",
  10.                      "fuzziness":"AUTO",
  11.                      "operator":"and"
  12.                   }
  13.                }
  14.             },
  15.             {
  16.                "match":{
  17.                   "features.description.text":{
  18.                      "query":".*acronis.*",
  19.                      "fuzziness":"AUTO",
  20.                      "operator":"and"
  21.                   }
  22.                }
  23.             },
  24.             {
  25.                "match":{
  26.                   "features.ocrs.text":{
  27.                      "query":".*acronis.*",
  28.                      "fuzziness":"AUTO",
  29.                      "operator":"and"
  30.                   }
  31.                }
  32.             },
  33.             {
  34.                "match":{
  35.                   "features.categories.text":{
  36.                      "query":".*acronis.*",
  37.                      "fuzziness":"AUTO",
  38.                      "operator":"and"
  39.                   }
  40.                }
  41.             },
  42.             {
  43.                "match":{
  44.                   "features.tags.text":{
  45.                      "query":".*acronis.*",
  46.                      "fuzziness":"AUTO",
  47.                      "operator":"and"
  48.                   }
  49.                }
  50.             },
  51.             {
  52.                "match":{
  53.                   "features.people.text":{
  54.                      "query":".*acronis.*",
  55.                      "fuzziness":"AUTO",
  56.                      "operator":"and"
  57.                   }
  58.                }
  59.             },
  60.             {
  61.                "match":{
  62.                   "features.emotions.text":{
  63.                      "query":".*acronis.*",
  64.                      "fuzziness":"AUTO",
  65.                      "operator":"and"
  66.                   }
  67.                }
  68.             },
  69.             {
  70.                "match":{
  71.                   "author":{
  72.                      "query":"acronis",
  73.                      "fuzziness":"AUTO",
  74.                      "operator":"and"
  75.                   }
  76.                }
  77.             },
  78.             {
  79.                "range":{
  80.                   "creation_date":{
  81.                      "gte":"2017-03-19T00:00:00Z",
  82.                      "lte":"2017-03-26T00:00:00Z"
  83.                   }
  84.                }
  85.             }
  86.          ],
  87.          "must":[
  88.             {
  89.                "match":{
  90.                   "content_type":{
  91.                      "query":"*image/**",
  92.                      "fuzziness":"AUTO",
  93.                      "operator":"or"
  94.                   }
  95.                }
  96.             }
  97.          ]
  98.       }
  99.    },
  100.    "_source":{
  101.       "excludes":[
  102.          "content"
  103.       ]
  104.    }
  105. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement