Trait indradb::EdgeQueryExt

source ·
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 { ... }
}
Expand description

Extension trait that specifies methods exposed by all edge queries.

Provided Methods

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

Arguments
  • limit - Limits the number of returned results.

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

Arguments
  • limit - Limits the number of returned results.

Gets a property associated with the edges.

Arguments
  • name - The name of the property to get.

Implementors