1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
use crate::util::*;
use crate::{Query, SpanQuery};
use serde::Serialize;
/// Matches spans near the beginning of a field. The span first query maps to Lucene
/// `SpanFirstQuery`. <br/>
/// The `match` clause can be any other span type query. The `end` controls the maximum end
/// position permitted in a match.
///
/// <https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-span-first-query.html>
#[derive(Debug, Clone, PartialEq, Serialize)]
#[serde(remote = "Self")]
pub struct SpanFirstQuery {
r#match: Box<SpanQuery>,
end: u32,
}
impl Query {
/// Creates an instance of [`SpanFirstQuery`]
pub fn span_first<T>(r#match: T, end: u32) -> SpanFirstQuery
where
T: Into<SpanQuery>,
{
SpanFirstQuery {
r#match: Box::new(r#match.into()),
end,
}
}
}
impl ShouldSkip for SpanFirstQuery {}
serialize_with_root!("span_first": SpanFirstQuery);
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn serialization() {
assert_serialize_query(
Query::span_first(Query::span_term("test", 1234), 10),
json!({
"span_first": {
"match": {
"span_term": {
"test": {
"value": 1234
}
}
},
"end": 10
}
}),
);
assert_serialize_query(
Query::span_first(Query::span_term("test", 1234), 10),
json!({
"span_first": {
"match": {
"span_term": {
"test": {
"value": 1234
}
}
},
"end": 10
}
}),
);
}
}