This is an unofficial library and doesn't yet support all the DSL, it's still work in progress.
Add elasticsearch-dsl
crate and version to Cargo.toml
toml
[dependencies]
elasticsearch-dsl = "0.1"
Documentation for the library is available on docs.rs
```rust use elasticsearch_dsl::*;
fn main() { let query = Search::new() .source(false) .stats("statistics") .from(0) .size(30) .query( Query::bool() .must(Query::multimatch( ["title", "description"], "you know, for search", )) .filter(Query::terms("tags", ["elasticsearch"])) .should(Query::term("verified", true).boost(10)), ) .aggregate( "countryids", Aggregation::terms("countryid") .aggregate("catalogids", Aggregation::terms("catalogid")) .aggregate("companyids", Aggregation::terms("companyid")) .aggregate( "top1", Aggregation::tophits() .size(1) .sort(Sort::new(SortField::Id).order(SortOrder::Desc)), ), ); } ```
See examples for more.
Licensed under either of Apache License, Version 2.0 or MIT license at your option.