{
"query": {
"bool": {
"or": [
{"match_phrase": {"text": "first phrase"}},
{"match_phrase": {"text": "second phrase"}}
]
}
}
}
我想匹配包含与输入的短语之一完全相同的所有文档。
{
"query": {
"bool": {
"or": [
{"match_phrase": {"text": "first phrase"}},
{"match_phrase": {"text": "second phrase"}}
]
}
}
}
我想匹配包含与输入的短语之一完全相同的所有文档。