{
"query": {
"custom_score": {
"query": {
"match": {
"xxx": {
"query": "foobar"
}
}
},
"filter": {
"and": [
{
"query": {
"match": {
"yyyy": {
"query": "barfoo"
}
}
}
}
]
}
},
"script": "_score * doc['_score']"
}
}
これによりエラーが発生します
[custom_score] query does not support [filter]
それでは、そのようなクエリをどのように評価するのでしょうか?