Traverse.Grpc
0.8.2
dotnet add package Traverse.Grpc --version 0.8.2
NuGet\Install-Package Traverse.Grpc -Version 0.8.2
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="Traverse.Grpc" Version="0.8.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Traverse.Grpc" Version="0.8.2" />
<PackageReference Include="Traverse.Grpc" />
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 Traverse.Grpc --version 0.8.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Traverse.Grpc, 0.8.2"
#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 Traverse.Grpc@0.8.2
#: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=Traverse.Grpc&version=0.8.2
#tool nuget:?package=Traverse.Grpc&version=0.8.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Traverse.Grpc
High-performance gRPC client for the Traverse graph database. Provides typed query results, transactions, batch operations, and schema inspection over gRPC.
Features
- Typed results — nodes, edges, paths, and scalar values as strongly-typed objects
- Transactions — explicit
BEGIN/COMMIT/ROLLBACKwith auto-rollback on dispose - Batch operations — batch create/update/delete for high-throughput writes
- Schema inspection — list labels, relationship types, property keys, indexes, constraints
- Connection pooling — built-in gRPC channel management with configurable options
Quick Start
using Traverse.Grpc;
var client = new TraverseGrpcClient("http://localhost:50051",
new TraverseClientOptions
{
Credentials = new TraverseCredentials("admin", "password"),
Database = "mydb"
});
var result = await client.QueryAsync("MATCH (n:Person) RETURN n.name, n.age LIMIT 10");
foreach (var row in result)
Console.WriteLine($"{row.GetString("n.name")}, age {row.GetInt64("n.age")}");
Transactions
await using var tx = await client.BeginTransactionAsync();
await tx.RunAsync("CREATE (:Person {name: $name})", new() { ["name"] = "Alice" });
await tx.RunAsync("CREATE (:Person {name: $name})", new() { ["name"] = "Bob" });
await tx.CommitAsync();
Dependencies
- Google.Protobuf
- Grpc.Net.Client
Documentation
Full documentation at truespar.com/traverse/docs
License
Copyright 2025-2026 Truespar. All rights reserved.
| Product | Versions 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.
-
net10.0
- Google.Protobuf (>= 3.35.1)
- Grpc.Net.Client (>= 2.80.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
See https://truespar.com/traverse/docs for full release notes.