Ananke.Graph.Abstractions 0.8.4

dotnet add package Ananke.Graph.Abstractions --version 0.8.4
                    
NuGet\Install-Package Ananke.Graph.Abstractions -Version 0.8.4
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Ananke.Graph.Abstractions" Version="0.8.4" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Ananke.Graph.Abstractions" Version="0.8.4" />
                    
Directory.Packages.props
<PackageReference Include="Ananke.Graph.Abstractions" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Ananke.Graph.Abstractions --version 0.8.4
                    
#r "nuget: Ananke.Graph.Abstractions, 0.8.4"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Ananke.Graph.Abstractions@0.8.4
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Ananke.Graph.Abstractions&version=0.8.4
                    
Install as a Cake Addin
#tool nuget:?package=Ananke.Graph.Abstractions&version=0.8.4
                    
Install as a Cake Tool

Ananke.Graph.Abstractions

NuGet License

Shared connection options for Ananke.Graph.* backend adapter packages.

This package is intentionally narrow. It does not define the graph domain model itself; the graph contracts (IKnowledgeGraph, GraphNode, GraphEdge) live in Ananke.Abstractions.Graph. Ananke.Graph.Abstractions only provides backend-facing connection settings reused by graph adapter packages.

Install

dotnet add package Ananke.Graph.Abstractions

Most applications will not install this package directly; they will consume it transitively through a concrete backend package.

What is included

Type Description
GraphConnectionOptions Shared Bolt-style connection settings used by graph adapters such as Memgraph/Neo4j-compatible providers

GraphConnectionOptions includes:

  • Uri — graph server endpoint such as bolt://localhost:7687
  • Username / Password — optional credentials
  • Database — optional logical database name for drivers that support it
  • MaxConnectionPoolSize — connection-pool cap
  • MaxConnectionLifetime — optional pooled-connection lifetime override

Relationship to other graph packages

Package Role
Ananke.Abstractions Defines the graph contracts in Ananke.Abstractions.Graph
Ananke.Graph.Abstractions Defines backend connection options shared by graph adapters
Ananke.Graph.Memgraph Concrete Memgraph / Bolt-backed implementation

Usage

Register GraphConnectionOptions from configuration and pass it to the backend-specific factory or graph implementation.

services.Configure<GraphConnectionOptions>(config.GetSection("Graph"));
services.AddSingleton<MemgraphSessionFactory>();
services.AddSingleton<IKnowledgeGraph, MemgraphKnowledgeGraph>();

Documentation

Full docs and package guidance: github.com/sevensamurai/Ananke

License

Apache 2.0

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Ananke.Graph.Abstractions:

Package Downloads
Ananke.Graph.Memgraph

Memgraph persistent graph backend for Ananke — IKnowledgeGraph implementation using the Neo4j Bolt driver, with optional MAGE algorithm overrides for PageRank and community detection.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.8.4 100 5/29/2026
0.8.3 99 5/17/2026
0.8.2 100 5/15/2026