Skip to content

wingspar/Gremlin.Net

 
 

Repository files navigation

Gremlin.Net

Gremlin.Net is a cross-platform Gremlin Server driver for .NET that is written in C#. It uses WebSockets to communicate with Gremlin Server.

AppVeyor Coveralls

Getting Started

Install the NuGet package.

Usage

var gremlinServer = new GremlinServer("localhost", 8182);
using (var gremlinClient = new GremlinClient(gremlinServer))
{
    var result =
        await gremlinClient.SubmitWithSingleResultAsync<bool>("g.V().has('name', 'gremlin').hasNext()");
}

API Reference

The API reference can be found here: https://florianhockmann.github.io/Gremlin.Net/api/Gremlin.Net.html

About

A Gremlin driver for .NET

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages

  • C# 96.5%
  • PowerShell 3.5%