Skip to content

Instantly share code, notes, and snippets.

@clintongormley
Last active December 7, 2018 19:02
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save clintongormley/40a5543b692b9f60ad1f to your computer and use it in GitHub Desktop.
Save clintongormley/40a5543b692b9f60ad1f to your computer and use it in GitHub Desktop.
curl -XGET "http://localhost:9200/_search" -d'
{
"query": {
"bool": {
"should": [
{
"match": {
"parent.text": "query string"
}
},
{
"has_child": {
"score_mode": "avg",
"type": "child",
"query": {
"match": {
"child.text": "query string"
}
}
}
}
]
}
}
}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment