Skip to content

Getting started

Install the Gremlinq templates package

Bash
> dotnet new install ExRam.Gremlinq.Templates

There are two dotnet new templates included in the package: one for a simple console app and one that shows how to get things running on Asp.NET Core. Currently, there is out-of-the-box support for the generic Gremlin Server, AWS Neptune, Azure CosmosDb and JanusGraph.

Create a new project

Depending on the desired project type and provider, use dotnet new to create a new project:

Bash
dotnet new gremlinq-console --name GettingStartedWithGremlinq --provider Neptune
Bash
dotnet new gremlinq-console --name GettingStartedWithGremlinq --provider CosmosDb
Bash
dotnet new gremlinq-console --name GettingStartedWithGremlinq --provider JanusGraph
Bash
dotnet new gremlinq-console --name GettingStartedWithGremlinq --provider GremlinServer
Bash
dotnet new gremlinq-aspnet --name GettingStartedWithGremlinq --provider Neptune
Bash
dotnet new gremlinq-aspnet --name GettingStartedWithGremlinq --provider CosmosDb
Bash
dotnet new gremlinq-aspnet --name GettingStartedWithGremlinq --provider JanusGraph
Bash
dotnet new gremlinq-aspnet --name GettingStartedWithGremlinq --provider GremlinServer