Skip to content

Instantly share code, notes, and snippets.

@kimchy
Created May 6, 2012 10:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kimchy/2621490 to your computer and use it in GitHub Desktop.
Save kimchy/2621490 to your computer and use it in GitHub Desktop.
curl localhost:9200/test/_search -d '{
"query" : {
"filtered" : {
"query" : {
"match_all" : {}
},
"filter" : {
"terms" : {
"_type" : ["value1", "value2"]
}
}
}
}
}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment