nova-boot-graphdb 0.1.1

Graph database helpers and adapters for Nova
Documentation

nova-boot-graphdb

Purpose

  • Graph database plugin with adapters for Neo4j/SurrealDB and query helpers for traversals.

Quick start

use nova_graphdb::NovaGraphDb;
let graph = NovaGraphDb::in_memory();
NovaApp::new("svc", 8080, state).add_plugin(graph).run().await;

Highlights

  • Query builders and graph-to-JSON helpers.
  • In-memory adapter for local testing.

Docs & examples

  • See crates/plugins/nova-boot-graphdb/src for API and examples.