-
Type:
Improvement
-
Status: Closed
-
Priority:
Major
-
Resolution: Done
-
Affects Version/s: 3.0.2-incubating
-
Fix Version/s: 3.2.4
-
Component/s: structure, test-suite, tinkergraph
-
Labels:None
TinkerGraph does not support two vertex properties with the same key/value.
gremlin> graph = TinkerGraph.open() ==>tinkergraph[vertices:0 edges:0] gremlin> v = graph.addVertex() ==>v[0] gremlin> v.property("name","marko") ==>vp[name->marko] gremlin> v.property("name","marko") ==>vp[name->marko] gremlin> v.properties("name") ==>vp[name->marko]
I just noted we don't have this as a Feature and we should (w/ respective test cases).
- links to