match 쿼리를 직접 사용해보자.
DELETE /boards PUT /boards { "mappings": { "properties": { "title": { "type": "text" } } } }
POST /boards/_doc { "title": "편의점 과자 내돈내산 후기" }
GET /boards/_search { "query": { "match": { "title": "편의점 후기" } } }