Skip to content

Instantly share code, notes, and snippets.

@kimchy
Created April 29, 2012 16:47
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/2551823 to your computer and use it in GitHub Desktop.
Save kimchy/2551823 to your computer and use it in GitHub Desktop.
curl -XPUT localhost:9200/test/type/1 -d '{
"field1" : false
}'
curl -XPUT localhost:9200/test/type/2 -d '{
"field1" : true
}'
curl localhost:9200/test/_search -d '{
"query" : {
"field" : {
"field1" : false
}
}
}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment