Reverse nested Aggregation
Options
{
...
"issue" : {
"properties" : {
"tags" : { "type" : "text" },
"comments" : { #1
"type" : "nested",
"properties" : {
"username" : { "type" : "keyword" },
"comment" : { "type" : "text" }
}
}
}
}
}Last updated