Cole-Greer commented on code in PR #3252:
URL: https://github.com/apache/tinkerpop/pull/3252#discussion_r2471419762
##########
gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/map/AddEdge.feature:
##########
@@ -412,7 +412,7 @@ Feature: Step - addE()
And using the parameter xx2 defined as "d[0.1].d"
And the traversal of
"""
- g.addE(xx1).from(vid1).to(vid6).property("weight", xx2)
+ g.addE(xx1).from(V(vid1)).to(V(vid6)).property("weight", xx2)
Review Comment:
Unfortunately use of `constant()` here doesn't quite work as must be passed
in as query parameters (to support providers with differing ID management
systems), and `constant` does not take parameters. I will leave this test using
`V()`.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]