this DSL my elasticsearch
{
"query": {
"multi_match": {
"query": "text_search xxxxxxx",
"type" : "phrase_prefix",
"fields": ["xxxxxx","yyyyyyy"]
}
},
"post_filter": {
"terms": {
"field xxxxx ": [
"xxxxx",
"yyyyy"
]
}
}
}
How i query multiple field in post_filter ? Help me pls .
Thank you