Commit Graph

2 Commits

Author SHA1 Message Date
Pongpon Sinlapa 251bd25d02 update lib es v8 2023-01-14 18:34:59 +07:00
Ido Perlmuter 259a3cd818
Add support for the "Delete by Query" API (#11)
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:35:40 +03:00