tinkergraph-gremlin icon indicating copy to clipboard operation
tinkergraph-gremlin copied to clipboard

Results 5 tinkergraph-gremlin issues
Sort by recently updated
recently updated
newest added

Hi; When I try this library with the GREMLIN_TINKERGRAPH_VERTEX_ID_MANAGER configuration via conf.setProperty(GREMLIN_TINKERGRAPH_VERTEX_ID_MANAGER, TinkerGraph.DefaultIdManager.UUID.name()); it has no effect, I suppose it is because of the line 702 of https://github.com/ShiftLeftSecurity/tinkergraph-gremlin/blob/master/src/main/java/org/apache/tinkerpop/gremlin/tinkergraph/structure/TinkerGraph.java In the...

I use the query to delete "Action" edge as below: **g.V().outE("Action").drop().iterate();** However it occurs some error. There are stack trace: ``` java.util.ConcurrentModificationException at java.util.ArrayList$Itr.next(ArrayList.java:860) at org.apache.tinkerpop.gremlin.util.iterator.MultiIterator.next(MultiIterator.java:72) at org.apache.tinkerpop.gremlin.process.traversal.step.map.FlatMapStep.processNextStart(FlatMapStep.java:45) at org.apache.tinkerpop.gremlin.process.traversal.step.util.AbstractStep.hasNext(AbstractStep.java:143)...

* before this change, the entire element would be deserialized * because the majority of properties are actually unused, this should save us a lot of time * best used...

I noticed that remove() on TinkerProperty and TinkerVertexProperty don't work for specialized vertices/edges. Hopefully this bug will help someone who might be debugging strange behavior in future.

The test suite currently executes for the standard TinkerGraph. This is good for any regressions against the non-specialized case. For the specialized case, the only test is `SpecializedElementsTest` which isn't...