Can i "post_filter" multiple fields?

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

You can use a bool query for that.

how to ? can example me ?

https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-bool-query.html good enough? You can put the bool right into the post_filter.

thank you .