grafeo 0.1.1

A high-performance, pure-Rust, embeddable graph database
Documentation

Grafeo

A high-performance, pure-Rust, embeddable graph database.

Grafeo supports multiple query languages through feature flags:

  • GQL (ISO standard, default) — gql feature
  • Cyphercypher feature
  • SPARQLsparql feature
  • Gremlingremlin feature
  • GraphQLgraphql feature

Enable all with the full feature.

Quick Start

use grafeo::GrafeoDB;

let db = GrafeoDB::new_in_memory();
let session = db.session();
let result = session.execute("INSERT (:Person {name: 'Alice'})");