When creating a vertex i explicitly mentioned Cardinality as single still its taking list, not able figure out why.
<code>wg.addV("label")
.property(VertexProperty.Cardinality.single,"name", "testname").next();
</code>
<code>wg.addV("label")
.property(VertexProperty.Cardinality.single,"name", "testname").next();
</code>
wg.addV("label")
.property(VertexProperty.Cardinality.single,"name", "testname").next();
In the above code even after mentioning single it is storing as list.
gremlin server and java driver both use 3.7.2 version.