pub struct JoinQuery {
pub left: Box<QueryExpr>,
pub right: Box<QueryExpr>,
pub join_type: JoinType,
pub on: JoinCondition,
pub filter: Option<Filter>,
pub order_by: Vec<OrderByClause>,
pub limit: Option<u64>,
pub offset: Option<u64>,
pub return_items: Vec<SelectItem>,
pub return_: Vec<Projection>,
}Expand description
Join query: combines table and graph queries
Fields§
§left: Box<QueryExpr>Left side (typically table)
right: Box<QueryExpr>Right side (typically graph)
join_type: JoinTypeJoin type
on: JoinConditionJoin condition
filter: Option<Filter>Post-join filter condition
order_by: Vec<OrderByClause>Post-join ordering
limit: Option<u64>Post-join limit
offset: Option<u64>Post-join offset
return_items: Vec<SelectItem>Canonical SQL RETURN projection.
return_: Vec<Projection>Post-join projection
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for JoinQuery
impl RefUnwindSafe for JoinQuery
impl Send for JoinQuery
impl Sync for JoinQuery
impl Unpin for JoinQuery
impl UnsafeUnpin for JoinQuery
impl UnwindSafe for JoinQuery
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request