Documentation

.NET

Description

JanusGraph is a scalable graph database optimized for storing and querying graphs containing hundreds of billions of vertices and edges distributed across a multi-machine cluster.

Examples

Dependency:
dotnet add package Testcontainers.JanusGraph
Usage:
var janusGraphContainer = new JanusGraphBuilder()
  .WithImage("janusgraph/janusgraph:1.0.0")
  .Build();
await janusGraphContainer.StartAsync();