Skip to content

Instantly share code, notes, and snippets.

@jprante
Created April 7, 2012 14:22
Show Gist options
  • Save jprante/2329334 to your computer and use it in GitHub Desktop.
Save jprante/2329334 to your computer and use it in GitHub Desktop.
for chepa
curl -XGET http://localhost:9200/myapp/product/_search -d '{
"query" : {
"bool" : {
"must" : [
{
"text" : { "name" : "asus" }
},
{
"range" : {
"price_low" : {
"gte" : 1800.15
}
}
},
{
"range" : {
"price_high" : {
"lte" : 2500.61
}
}
}
]
}
}
}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment