1. I want to use variables within Gremlin Console with approach as below, but it's not working. How can I get this working? Please see error at the end of message.
- Graph Schema Modeling (basically guidelines to model a NoSQL DB or Relational DB to Graph DB)
Third, Can you please suggest an add-on or API that can create Visual Graph either from a Gremlin Query output or from JSON output of a Gremlin query.
Many thanks.
plugin activated: tinkerpop.server
plugin activated: tinkerpop.utilities
plugin activated: tinkerpop.tinkergraph
gremlin> :remote connect tinkerpop.server conf/neptune-remote.yaml
gremlin> :remote console
==>All scripts will now be sent to Gremlin Server - [ip-172-30-2-111.ec2.internal/
172.30.2.111:8182] - type ':remote console' to return to local mode
gremlin> g.V().has('name','marko').next()
==>v[1]
gremlin> marko = g.V().has('name','marko').next()
{"requestId":"dff9916a-2a67-4744-a8e9-b8e6ead26620","code":"MalformedQueryException","detailedMessage":"Query parsing failed at line 1, character position at 2, error message : token recognition error at: 'rk'"}