AND OR 조건 엘라스틱 서치 쿼리
GET test1/_search
{
"query": {
"bool": {
"must": [
{
"bool": {
"should": [
{"wildcard": {"comment": "*증정*"}},
{"wildcard": {"comment": "*증조*"}}
]
}
},
{
"bool": {
"should": [
{"wildcard": {"comment": "*꼬북*"}},
{"wildcard": {"comment": "*꼬북칩*"}}
]
}
}
]
}
}
}