입력한 "이름"이 문서 제목에 포함되는 문서와 "제목"이 문서 제목에 포함되는 문서에서 검색하고 싶었다.
{
"query": {
"bool": {
"filter": [
{
"regexp": {
"title": ".*"+charactor.replace(' ', '')+".*"
}
}
],
"should": {
"match": {
"text": query
}
}
}
}
}
{
"query": {
"bool": {
"filter": [{
"bool":{
"should": [
{"regexp": {"title": ".*"+charactor.replace(' ', '')+".*"}},
{"regexp": {"title": ".*"+title.replace(' ', '')+".*"}}
]
}
}],
"should": {
"match": {
"text": query
}
}
}
}
}