Enum indradb::VertexQuery
[−]
[src]
pub enum VertexQuery {
All {
start_id: Option<Uuid>,
limit: u32,
},
Vertices {
ids: Vec<Uuid>,
},
Pipe {
edge_query: Box<EdgeQuery>,
converter: EdgeDirection,
limit: u32,
},
}A query for vertices.
This is used by transactions to get, set and delete vertices and vertex metadata.
Variants
AllFields of All
start_id: Option<Uuid> | |
limit: u32 |
VerticesFields of Vertices
ids: Vec<Uuid> |
PipeFields of Pipe
edge_query: Box<EdgeQuery> | |
converter: EdgeDirection | |
limit: u32 |
Methods
impl VertexQuery[src]
fn outbound_edges(
self,
t: Option<Type>,
high: Option<DateTime<Utc>>,
low: Option<DateTime<Utc>>,
limit: u32
) -> EdgeQuery[src]
self,
t: Option<Type>,
high: Option<DateTime<Utc>>,
low: Option<DateTime<Utc>>,
limit: u32
) -> EdgeQuery
fn inbound_edges(
self,
t: Option<Type>,
high: Option<DateTime<Utc>>,
low: Option<DateTime<Utc>>,
limit: u32
) -> EdgeQuery[src]
self,
t: Option<Type>,
high: Option<DateTime<Utc>>,
low: Option<DateTime<Utc>>,
limit: u32
) -> EdgeQuery
Trait Implementations
impl Eq for VertexQuery[src]
impl PartialEq for VertexQuery[src]
fn eq(&self, __arg_0: &VertexQuery) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &VertexQuery) -> bool[src]
This method tests for !=.
impl Clone for VertexQuery[src]
fn clone(&self) -> VertexQuery[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more