You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
input this gremlin:
g.addV().property('name','hello').property('name','world')
g.V('#13:2').properties('name').count()
the property count is 1,but the gremlin standard is 2, name is overwritten by 'world'
also, it does not support such this: g.addV().property(set, 'key', 'aa', 'bb', 'cc', 'dd') . by the standard gremlin api, it will create a set property with 4 elements.
Actual behavior
count is 1
Steps to reproduce
The text was updated successfully, but these errors were encountered:
i found this method just ignored the first argument cardinality, so the gremlin cardinality feature will not work.
org.apache.tinkerpop.gremlin.orientdb.OrientVertex#property(org.apache.tinkerpop.gremlin.structure.VertexProperty.Cardinality, java.lang.String, V, java.lang.Object...)
OrientDB Version: 3.0.34
Java Version: 1.8.0_181
OS: win10 2004
Expected behavior
standard gremlin url: https://tinkerpop.apache.org/docs/current/reference/#vertex-properties
input this gremlin:
g.addV().property('name','hello').property('name','world')
g.V('#13:2').properties('name').count()
the property count is 1,but the gremlin standard is 2, name is overwritten by 'world'
also, it does not support such this: g.addV().property(set, 'key', 'aa', 'bb', 'cc', 'dd') . by the standard gremlin api, it will create a set property with 4 elements.
Actual behavior
count is 1
Steps to reproduce
The text was updated successfully, but these errors were encountered: