Skip to content

Instantly share code, notes, and snippets.

@wnqueiroz
Created June 6, 2018 00:36
Show Gist options
  • Select an option

  • Save wnqueiroz/2368e92699ec8fbbb2925a9cf2acdfbb to your computer and use it in GitHub Desktop.

Select an option

Save wnqueiroz/2368e92699ec8fbbb2925a9cf2acdfbb to your computer and use it in GitHub Desktop.
query_match_all_posts_join.js
{
"query": {
"has_parent": { // aqui estamos o método has_parent, que efeturá a pesquisa com o pai especificado
"parent_type": "users", // buscamos os documentos que tenham como pai, os documentos "users"
"query": {
"match_all": {} // buscando todos os resultados
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment