© 2026 Hedgehog Software, LLC
g := gremlingo.Traversal_().WithRemote(driverRemoteConnection) traversal := g.GetGraphTraversal() result, err := traversal.V("v-1").Next() vertex, err := result.GetVertex() fmt.Println(vertex)
curl --location --request POST 'https://xxx.neptune.amazonaws.com:8182/gremlin' \ --header 'Content-Type: text/plain' \ --data-raw '{"gremlin":"g.V('\''v-1'\'')"}'
{ "result": { "data": { "@type": "g:List", "@value": [ { "@type": "g:Vertex", "@value": { "id": "v-1", "label": "PERSON", "properties": { "email": [ { "@type": "g:VertexProperty", "@value": { "value": "[email protected]", "label": "email" } } ], } ] } } } ] }, "meta": { "@type": "g:Map", "@value": [] } } }
Join the Discord to ask follow-up questions and connect with the community
Apache TinkerPop is an open source graph computing framework and the home of the Gremlin graph query language.
1,383 Members