Strongly typed Elasticsearch DSL written in Rust

This is an unofficial library and doesn't yet support all the DSL, it's still work in progress.

Features

Installation

Add elasticsearch-dsl crate and version to Cargo.toml

toml [dependencies] elasticsearch-dsl = "0.1"

Documentation

Documentation for the library is available on docs.rs

Quick start

```rust use elasticsearch_dsl::search::*;

let query = Search::new() .stats("statistics") .from(0u64) .size(30u64) .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.

License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.