Re: hasId

2017-05-28 Thread Daniel Kuppitz
I created the ticket: https://issues.apache.org/jira/browse/TINKERPOP-1681 On Sun, May 28, 2017 at 11:12 AM, Daniel Kuppitz wrote: > Hi Pieter, > > that's a nasty bug. I just verified that it's also a bug in master/: > > gremlin> graph = TinkerGraph.open() >

Re: hasId

2017-05-28 Thread Daniel Kuppitz
Hi Pieter, that's a nasty bug. I just verified that it's also a bug in master/: gremlin> graph = TinkerGraph.open() ==>tinkergraph[vertices:0 edges:0] gremlin> a = graph.addVertex(label, "A") ==>v[0] gremlin> b = graph.addVertex(label, "B") ==>v[1] gremlin>

RE: hasId

2017-05-28 Thread pieter gmail
Hi, The following code illustrates my concern/confusion. @Test public void testHasId() { final TinkerGraph graph = TinkerGraph.open(); Vertex a = graph.addVertex(T.label, "A"); Vertex b = graph.addVertex(T.label, "B"); List vertices =