PUT test
{
"mappings": {
"properties": {
"b": {
"type": "keyword"
},
"nested": {
"type": "nested",
"properties": {
"a": {
"type": "keyword"
}
}
}
}
}
}
POST test/_search
{
"query": {
"nested": {
"path": "nested",
"query": {
"script": {
"script": """
doc['nested.a'].value == doc['b'].value
"""
}
}
}
}
}
类似这种DSL,但是nested script里面获取不到外部字段值
2 个回复
Charele - Cisco4321
赞同来自:
Charele - Cisco4321
赞同来自: