Description
From the dev mailing list:
@Test public void testHasId() { final TinkerGraph graph = TinkerGraph.open(); Vertex a = graph.addVertex(T.label, "A"); Vertex b = graph.addVertex(T.label, "B"); List<Vertex> vertices = graph.traversal().V().hasId(a.id()).hasId(b.id()).toList(); Assert.assertTrue(vertices.isEmpty()); }
The test fails as the both vertices are returned.
Attachments
Issue Links
- links to