Trait indradb::EdgeQueryExt[][src]

pub trait EdgeQueryExt: Into<EdgeQuery> {
    fn outbound(self) -> PipeVertexQuery { ... }
fn inbound(self) -> PipeVertexQuery { ... }
fn property<S: Into<String>>(self, name: S) -> EdgePropertyQuery { ... } }

Extension trait that specifies methods exposed by all edge queries.

Provided methods

fn outbound(self) -> PipeVertexQuery[src]

Gets the vertices associated with the outbound end of the edges.

fn inbound(self) -> PipeVertexQuery[src]

Gets the vertices associated with the inbound end of the edges.

fn property<S: Into<String>>(self, name: S) -> EdgePropertyQuery[src]

Gets a property associated with the edges.

Arguments

  • name: The name of the property to get.
Loading content...

Implementors

Loading content...