-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gremlin script does not work unless graph is set to TinkerGraph, Titan.... #7
Comments
Well, I'm not really sure. I just tried this using using What version of the Gremlin Server are you using? What configuration? |
I tired 3.0.0 and also 3.1.0. Yes I also used the same conf file. I used the following command to start the gremlin server
|
I solved the problem.
|
Great! I'll mark this as closed then. |
Hi,
I tried running the following snippet.
`>>> import gremlinrestclient
But this only works for me if I set graph variable to TinkerGraph.open()
>>> resp = client.execute( ... "graph = TinkerGraph.open(); graph.addVertex(label, p1, 'name', p2)", ... bindings={"p1": "person", "p2": "dave"})
And this is same for remaining functions.
The text was updated successfully, but these errors were encountered: