Skip to content

Instantly share code, notes, and snippets.

@jarosan
Created January 24, 2012 12:08
Show Gist options
  • Save jarosan/1669877 to your computer and use it in GitHub Desktop.
Save jarosan/1669877 to your computer and use it in GitHub Desktop.
curl -X GET "http://localhost:9200/development_places/place/_search?pretty=true" -d '
{
"query" : {
"custom_score" : {
"query": {
"filtered" : {
"query" : {"match_all":{}},
"filter" : [
{
"and" : [ {"geo_bounding_box":{"location":{"top_left":[13.0535,52.6675],"bottom_right":[13.7262,52.3303]}}},{"range":{"number_of_beds":{"gte":2}}}]
}
]
}
},
"script" : "_source.search_ranking * 1"
}
},
"size":5,
"from":0
}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment