Skip to content

Instantly share code, notes, and snippets.

@smbanaie
Created June 4, 2014 11:52
Show Gist options
  • Save smbanaie/58a449a812f7087b0093 to your computer and use it in GitHub Desktop.
Save smbanaie/58a449a812f7087b0093 to your computer and use it in GitHub Desktop.
search channel
{
"from" : 0, "size" : 20,
"sort" : [ { "RE" : {"order" : "desc"}}],
"query": {
"filtered": {
"query" : {
"query_string" : {
"query" : " \"shopping\" \"clothing\" \"clothes\" \"women\" \"vintage\" \"wholesale\" \"dresses\" \"outlet\" \"websites\" \"fashionable\" \"junior\" ",
"fields" : [ "tags"]
}
}
,
"filter": {
"and" : [
{"terms": { "category": ["entertainment"] } } ,
{"term" : { "language" : "en" } },
{"term" : { "country" : "usa"} } ,
{ "range" : {
"time" : {
"gte": 1093029561,
"lte": 1402580800
}
}
}
]
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment