# 1341번 게시글 삭제
curl -XPOST "localhost:9200/board-202205/_delete_by_query" -H 'Content-Type: application/json' -d '
{
"query": {
"match": {
"_id": "1341"
}
}
}
'
# writer 필드가 없는 게시글 일괄 삭제
curl -XPOST "localhost:9200/board-202205/_delete_by_query" -H 'Content-Type: application/json' -d '
{
"query": {
"bool": {
"must_not": {
"exists": {
"field": "writer"
}
}
}
}
}
'