Grafeo
A high-performance, pure-Rust, embeddable graph database.
Grafeo supports multiple query languages through feature flags:
- GQL (ISO standard, default) —
gqlfeature - Cypher —
cypherfeature - SPARQL —
sparqlfeature - Gremlin —
gremlinfeature - GraphQL —
graphqlfeature
Enable all with the full feature.
Quick Start
use GrafeoDB;
let db = new_in_memory;
let session = db.session;
let result = session.execute;