Using the following ElasticSearch query to delete all documents with sourceId 1:
POST http://{{elasticip}}:9200/index2/index2_doc/_delete_by_query
{
"query": {
"match": {
"sourceId": 1
}
}
}
What is the proper syntax of the body if I wanted to delete from sourceId 1, 2, and 3 all at once?