Provides an imperative interface for building and composing Gremlin queries for use with the HIRO Graph API.
$ npm install hiro-graph-gremlin
import queryBuilder, { T, long } from "hiro-graph-gremlin";
const query = queryBuilder();
query.outE("edge")
.has("ogit/_in-type", "ogit/Foo")
.hasNot("ogit/_created-on", T.lt, long(Date.now()-1000))
- placeholder support