[][src]Trait indradb::EdgeQueryExt

pub trait EdgeQueryExt: Into<EdgeQuery> {
    fn outbound(self, limit: u32) -> PipeVertexQuery { ... }
fn inbound(self, limit: u32) -> 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, limit: u32) -> PipeVertexQuery

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

Arguments

  • limit - Limits the number of returned results.

fn inbound(self, limit: u32) -> PipeVertexQuery

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

Arguments

  • limit - Limits the number of returned results.

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

Gets a property associated with the edges.

Arguments

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

Implementors

impl EdgeQueryExt for PipeEdgeQuery[src]

impl EdgeQueryExt for SpecificEdgeQuery[src]

Loading content...