[TIL]Day 121

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

GET test1/_search
{
    "query": {
        "bool": {
            "must": [
                {
                    "bool": {
                        "should": [
                            {"wildcard": {"comment": "*증정*"}},
                            {"wildcard": {"comment": "*증조*"}}
                        ]
                    }
                },
                {
                    "bool": {
                        "should": [
                            {"wildcard": {"comment": "*꼬북*"}},
                            {"wildcard": {"comment": "*꼬북칩*"}}
                        ]
                    }
                }
            ]
        }
    }
}

좋은 웹페이지 즐겨찾기