GumpacG opened a new pull request, #3521:
URL: https://github.com/apache/tinkerpop/pull/3521
## Summary
The source-level `with("multilabel")` / `with("singlelabel")` clause was
rendered
with double quotes in the GremlinLang output of every GLV, while all other
string
arguments render with single quotes. This aligns it to single quotes so
GremlinLang
output is internally consistent.
## Before / after
```
# before
g.with("multilabel").V().elementMap()
# after
g.with('multilabel').V().elementMap()
```
## Changes
- Updated the canonical rendering in all 5 GLVs (Java, Go, JavaScript, .NET,
Python).
Go, JavaScript, and .NET each render this clause in two places
(`GremlinLang` and
`GraphTraversalSource`); both were updated.
- Added a GremlinLang unit test per GLV asserting the single-quote output.
Assisted-by: Kiro:claude-opus-4.8
--
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]