📌 검색 API- GET /_search# Click the Variables button, above, to create your own variables.GET ${exampleVariable1} // _search{ "query": { "${exampleVariable2}": {} // match_all }}# 모든 인덱스 조회GET /_cat/indices?v# 인덱스 생성PUT /movie_index{ "settings": { "number_of_shards": 1, "number_of_replicas": 1 }, "mappings": { "properties": { "name": { "type": "text" }, "yea..