Struct elasticsearch_dsl::search::queries::joining::ParentIdQuery
source · [−]pub struct ParentIdQuery { /* private fields */ }
Expand description
Returns child documents joined to a specific parent document. You can use a join field mapping to create parent-child relationships between documents in the same index.
To create parent_id query:
Query::parent_id("test", 1);
https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-ParentId-query.html
Implementations
sourceimpl ParentIdQuery
impl ParentIdQuery
sourcepub fn ignore_unmapped(self, ignore_unmapped: bool) -> Self
pub fn ignore_unmapped(self, ignore_unmapped: bool) -> Self
Indicates whether to ignore an unmapped type
and not return any documents instead of an
error. Defaults to false
.
If false
, Elasticsearch returns an error if the type
is unmapped.
You can use this parameter to query multiple indices that may not contain the type
.
sourcepub fn boost<B>(self, boost: B) -> Self where
B: TryInto<Boost>,
pub fn boost<B>(self, boost: B) -> Self where
B: TryInto<Boost>,
Floating point number used to decrease or increase the
relevance scores
of a query. Defaults to 1.0
.
You can use the boost parameter to adjust relevance scores for searches containing two or more queries.
Boost values are relative to the default value of 1.0
.
A boost value between 0 and 1.0
decreases the relevance score.
A value greater than 1.0
increases the relevance score.
Trait Implementations
sourceimpl Clone for ParentIdQuery
impl Clone for ParentIdQuery
sourcefn clone(&self) -> ParentIdQuery
fn clone(&self) -> ParentIdQuery
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ParentIdQuery
impl Debug for ParentIdQuery
sourceimpl PartialEq<ParentIdQuery> for ParentIdQuery
impl PartialEq<ParentIdQuery> for ParentIdQuery
sourcefn eq(&self, other: &ParentIdQuery) -> bool
fn eq(&self, other: &ParentIdQuery) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ParentIdQuery) -> bool
fn ne(&self, other: &ParentIdQuery) -> bool
This method tests for !=
.
sourceimpl Serialize for ParentIdQuery
impl Serialize for ParentIdQuery
impl StructuralPartialEq for ParentIdQuery
Auto Trait Implementations
impl RefUnwindSafe for ParentIdQuery
impl Send for ParentIdQuery
impl Sync for ParentIdQuery
impl Unpin for ParentIdQuery
impl UnwindSafe for ParentIdQuery
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more