1.0.0-alpha3 • Published 9 months ago

graphology-gremlin v1.0.0-alpha3

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

Gremlin DSL for graphology CI

This project allows you to do Gremlin queries on top of a graphology instance. For now the project is in alpha, but it already supports a good part of all the basis of Gremlin.

Please open a ticket on github if something is missing or not working, it will help me a lot ! Thanks.

How to use it

  • Install the library
$> npm install graphology-gremlin
  • Import it in your script
import { GraphTraversalSource } from "graphology-gremlin";
  • Create a GraphTraversalSource with your graph (a graphology instance)
const g = new GraphTraversalSource(graph);
  • Make your Gremlin query with the created GraphTraversalSource
const result = g.V().out("KNOWS").toList();
1.0.0-alpha3

9 months ago

1.0.0-alpha2

9 months ago

1.0.0-alpha1

9 months ago