1 Commits

Author SHA1 Message Date
Ido Perlmuter
7ab8621d76 Add support for the "Delete by Query" API
This commit adds support for ElasticSearch's Delete by Query API. Usage
is very similar to that of Search and Count requests:

    esquery.Delete().
        Index("index_1, "index_2").
        Query(esquery.Bool()...).
        Run(
            es,
            esapi.WithAnalyzeWildcard(true),
        )
2020-05-27 14:25:56 +03:00