Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save fabito/e0c1ab1d9d8ff8d1b5561884acd126ee to your computer and use it in GitHub Desktop.
Save fabito/e0c1ab1d9d8ff8d1b5561884acd126ee to your computer and use it in GitHub Desktop.
sample elasticsearch query to sort parent based on child field
{
"query":{
"has_child":{
"query":{
"function_score":{
"functions":[
{
"field_value_factor":{
"factor":1,
"field":"count"
}
}
]
}
},
"score_mode":"avg",
"type":"my_child_doc_type"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment