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" />
                    
Directory.Packages.props
<PackageReference Include="Traverse.Grpc" />
                    
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 Traverse.Grpc --version 0.8.2
                    
#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
                    
Install as a Cake Addin
#tool nuget:?package=Traverse.Grpc&version=0.8.2
                    
Install as a Cake Tool

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/ROLLBACK with 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 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

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.8.2 105 7/10/2026
0.8.0 99 7/9/2026
0.7.0 107 5/15/2026
0.6.1 99 5/15/2026
0.6.0 134 3/7/2026
0.5.0 114 3/4/2026

See https://truespar.com/traverse/docs for full release notes.