Trait indradb::VertexQueryExt[][src]

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

Extension trait with methods available in all vertex queries.

Provided methods

fn outbound(self) -> PipeEdgeQuery[src]

Gets the outbound edges associated with the vertices.

fn inbound(self) -> PipeEdgeQuery[src]

Gets the inbound edges associated with the vertices.

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

Gets a property associated with the vertices.

Arguments

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

Implementors

Loading content...