[TIL]Day 121

이재희·2021년 3월 30일
0

TIL

목록 보기
121/312

AND OR 조건 엘라스틱 서치 쿼리

GET test1/_search
{
    "query": {
        "bool": {
            "must": [
                {
                    "bool": {
                        "should": [
                            {"wildcard": {"comment": "*증정*"}},
                            {"wildcard": {"comment": "*증조*"}}
                        ]
                    }
                },
                {
                    "bool": {
                        "should": [
                            {"wildcard": {"comment": "*꼬북*"}},
                            {"wildcard": {"comment": "*꼬북칩*"}}
                        ]
                    }
                }
            ]
        }
    }
}
profile
오늘부터 열심히 산다

0개의 댓글