gremlin> g.V().has("newid","xyz").valueMap(true).tryNext().isPresent()
==>false
gremlin> g.V().has("newid",unfold().is("hash data")).valueMap(true).tryNext().isPresent()
07:01:35 WARN org.janusgraph.graphdb.transaction.StandardJanusGraphTx - Query requires iterating over all vertices [()]. For better performance, use indexes
==>trueSo here thing is when using unfold() index is not being used
© 2023 Groups.io