Created
February 15, 2012 16:29
-
-
Save shardnit/1837082 to your computer and use it in GitHub Desktop.
Parent/child Filter Search
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl -d 'http://localhost:9200/pictures/_search' -d | |
{ | |
"query": { | |
"has_child":{ | |
"type":"interaction", | |
"filtered" : { | |
"query" : { | |
"term" : { "text" : "house" } | |
}, | |
"filter" : { | |
"and" : [ | |
{ | |
"term" : { "text" : "cup" } | |
} | |
] | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment