[][src]Trait indradb::VertexQueryExt

pub trait VertexQueryExt: Into<VertexQuery> {
    fn outbound(self, limit: u32) -> PipeEdgeQuery { ... }
fn inbound(self, limit: u32) -> PipeEdgeQuery { ... }
fn property<S: Into<String>>(self, name: S) -> VertexPropertyQuery { ... } }

Extension trait that specifies methods exposed by all vertex queries.

Provided methods

fn outbound(self, limit: u32) -> PipeEdgeQuery

Gets the outbound edges associated with the vertices.

Arguments

  • limit - Limits the number of returned results.

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

Gets the inbound edges associated with the vertices.

Arguments

  • limit - Limits the number of returned results.

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

Gets a property associated with the vertices.

Arguments

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

Implementors

impl VertexQueryExt for PipeVertexQuery[src]

impl VertexQueryExt for RangeVertexQuery[src]

impl VertexQueryExt for SpecificVertexQuery[src]

Loading content...