Skip to content

Instantly share code, notes, and snippets.

@kimchy
Created May 17, 2012 20:17
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/2721336 to your computer and use it in GitHub Desktop.
Save kimchy/2721336 to your computer and use it in GitHub Desktop.
curl localhost:9200/your_index/_search -d '{
"query" : {
"filtered" : {
"query" : {
"match_all" : {}
},
"filter" : {
"missing" : {
"field" : "phone_numbers.id"
}
}
}
}
}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment