-
Notifications
You must be signed in to change notification settings - Fork 54
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
rebindings map #4
Comments
I'm not up to date with the developments in Tinkerpop at the moment. Thanks for the heads up. Will look into it. |
While not about your package, this thread has some details and a solution for a different package: |
Well, // Create a new request
req := gremlin.Query(`g.V()`)
// Populate the rebindings map
req.Args.Rebindings = gremlin.Bind{
"g": "demo.g",
}
// Process the request
data, err := req.Exec() Note that |
…emlin 105/tc 778 locking gremlin
I have found that some gremlin server implementations, DSE Graph in particular, require aliases to be provided. This is discussed here, but there is no indication of what the key/value pair look like.
Could you update the documentation to explain how this should be handled?
The text was updated successfully, but these errors were encountered: