-
Notifications
You must be signed in to change notification settings - Fork 3
HowTo
gongal edited this page Mar 27, 2013
·
5 revisions
Here's an example where I search for a recipe with a name that includes "Apple"
curl -XGET earthiverse.ath.cx:9200/food/recipe/_search?pretty -d '{
"query" : {
"query_string" : {
"default_field" : "name",
"query" : "Apple"
}
}
}'