1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
//! The full text queries enable you to search analyzed text fields such as the body of an email.
//! The query string is processed using the same analyzer that was applied to the field during
//! indexing.
mod match_bool_prefix_query;
mod match_phrase_prefix_query;
mod match_phrase_query;
mod match_query;
mod multi_match_query;
pub use self::match_bool_prefix_query::*;
pub use self::match_phrase_prefix_query::*;
pub use self::match_phrase_query::*;
pub use self::match_query::*;
pub use self::multi_match_query::*;