I am using Neo4j - Graph Database Kernel 1.8
It uses this gremlin version:
gremlin> Gremlin.version()
==> 1.5
which is very old version.
I want to upgrade to gremlin
2.0
or 2.1
from the github project, since I can't run this command on gremlin 1.5
:
gremlin> g.v(1).outE.has("weight", T.gte, 0.5f).weight
==> No such property: T for class: groovysh_evaluate
My question is what should I do, so I won't mess up all the entire environment of neo4j
.