28 releases
0.8.10 | May 13, 2024 |
---|---|
0.8.6 | Dec 11, 2023 |
0.8.5 | Aug 3, 2023 |
0.8.4 | May 20, 2023 |
0.1.1 | Mar 26, 2019 |
#158 in Database interfaces
2,043 downloads per month
Used in 2 crates
285KB
8K
SLoC
gremlin-client
A Rust client for Apache TinkerPop™.
Installation
Install from crates.io
[dependencies]
gremlin-client = "0.8"
with async support via async-std
[dependencies]
gremlin-client = { version = "0.8", features = ["async_std"] }
Examples
Basic usage
Execute a simple Gremlin query with an id and collect the results
Synchronous
use gremlin_client::{GremlinClient, Vertex};
fn main() -> Result<(), Box<std::error::Error>> {
let client = GremlinClient::connect("localhost")?;
let results = client
.execute("g.V(param)", &[("param", &1)])?
.filter_map(Result::ok)
.map(|f| f.take::<Vertex>())
.collect::<Result<Vec<Vertex>, _>>()?;
println!("{:?}", results);
Ok(())
}
Asynchronous
With async-std
activate the feature async-std-runtime
gremlin-client = { version = "*", features = ["async-std-runtime"] }
use gremlin_client::{aio::GremlinClient, Vertex};
use async_std::prelude::*;
#[async_std::main]
async fn main() -> Result<(), Box<std::error::Error>> {
let client = GremlinClient::connect("localhost").await?;
let results = client.execute("g.V(param)", &[("param", &1)]).await?
.filter_map(Result::ok)
.map(|f| f.take::<Vertex>())
.collect::<Result<Vec<Vertex>, _>>().await?;
println!("{:?}", results);
Ok(())
}
With tokio
activate the feature tokio-runtime
gremlin-client = { version = "*", features = ["tokio-runtime"] }
use gremlin_client::{aio::GremlinClient, Vertex};
use tokio_stream::StreamExt;
#[tokio::main]
async fn main() -> Result<(), Box<std::error::Error>> {
let client = GremlinClient::connect("localhost").await?;
let results = client.execute("g.V(param)", &[("param", &1)]).await?
.filter_map(Result::ok)
.map(|f| f.take::<Vertex>())
.collect::<Result<Vec<Vertex>, _>>().await?;
println!("{:?}", results);
Ok(())
}
Traversal example Rust GLV
Create a remote traversal with the provided GremlinClient
and build a traversal
using Rust language.
Synchronous
use gremlin_client::{GremlinClient, Vertex, process::traversal::traversal};
fn main() -> Result<(), Box<std::error::Error>> {
let client = GremlinClient::connect("localhost")?;
let g = traversal().with_remote(client);
let results = g.v(()).has_label("person").has(("name","Jon")).to_list()?;
println!("{:?}", results);
Ok(())
}
Aynchronous
With async-std
use gremlin_client::{aio::GremlinClient, Vertex, process::traversal::traversal};
use async_std::prelude::*;
#[async_std::main]
async fn main() -> Result<(), Box<std::error::Error>> {
let client = GremlinClient::connect("localhost").await?;
let g = traversal().with_remote_async(client);
let results = g.v(()).has_label("person").has(("name","Jon")).to_list().await?;
println!("{:?}", results);
Ok(())
}
With tokio
use gremlin_client::{aio::GremlinClient, Vertex, process::traversal::traversal};
use tokio_stream::StreamExt;
#[tokio::main]
async fn main() -> Result<(), Box<std::error::Error>> {
let client = GremlinClient::connect("localhost").await?;
let g = traversal().with_remote_async(client);
let results = g.v(()).has_label("person").has(("name","Jon")).to_list().await?;
println!("{:?}", results);
Ok(())
}
Additional Features
derive
feature
By including the derive
feature in your Cargo.toml
[dependencies]
gremlin_client = { version = "*", features = ["derive"] }
two derive macros are available
- FromGMap
- FromGValue
which you can use to derive the mapping from GMap and GValue (only Map currently) into structs.
with GValue
use gremlin_client::derive::{FromGMap, FromGValue};
use gremlin_client::process::traversal::traversal;
use gremlin_client::GremlinClient;
use std::convert::TryFrom;
fn main() -> Result<(), Box<dyn std::error::Error>> {
let client = GremlinClient::connect("localhost")?;
#[derive(Debug, PartialEq, FromGValue, FromGMap)]
struct Person {
name: String,
}
let results = client
.execute("g.V(param).valueMap()", &[("param", &1)])?
.filter_map(Result::ok)
.map(|f| Person::try_from(f))
.collect::<Result<Vec<Person>, _>>()?;
println!("Person {:?}", results[0);
Ok(())
}
with GMap
use gremlin_client::derive::FromGMap;
use gremlin_client::process::traversal::traversal;
use gremlin_client::GremlinClient;
use std::convert::TryFrom;
fn main() -> Result<(), Box<dyn std::error::Error>> {
let client = GremlinClient::connect("localhost")?;
#[derive(Debug, PartialEq, FromGMap)]
struct Person {
name: String,
}
let g = traversal().with_remote(client);
let results = g
.v(1)
.value_map(())
.iter()?
.filter_map(Result::ok)
.map(Person::try_from)
.collect::<Result<Vec<Person>, _>>()?;
println!("Person {:?}", results[0);
Ok(())
}
Dependencies
~3–18MB
~276K SLoC