{
"query": {
"bool": {
"or": [
{"match_phrase": {"text": "first phrase"}},
{"match_phrase": {"text": "second phrase"}}
]
}
}
}
入力したとおりのフレーズの 1 つを含むすべてのドキュメントを照合したいと考えています。
{
"query": {
"bool": {
"or": [
{"match_phrase": {"text": "first phrase"}},
{"match_phrase": {"text": "second phrase"}}
]
}
}
}
入力したとおりのフレーズの 1 つを含むすべてのドキュメントを照合したいと考えています。