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::*;
let query = Search::new() .source(false) .stats("statistics") .from(0) .size(30) .query( Query::bool() .must(Query::multi_match(["title", "description"], "you know, for search")) .filter(Query::terms("tags", ["elasticsearch"])) .should(Query::term("verified", true).boost(10)), ); ```
See examples for more.
Licensed under either of Apache License, Version 2.0 or MIT license at your option.