I would like to use Gremlin: so I tried a simple example in the gremlin 
console:

I have a simple struct: Issue -> TaggedAs -> Tag

// get all Issues with Tag.dscr == "Java"
g.V.filter{it.type.name=="Tag" && it.dscr=="Java"}.inE.outV.toList()

In gremlin this works pretty well:

Now I tried to do the same in Java with GremlinPipeline without success.

Can anybody tell me how I would write this in Java with GremlinPipeline 
(the result should be a List of Vertex instances) ?

Is the usage of gremlin advisable compared to the orientdb query API?

TIA




-- 

--- 
You received this message because you are subscribed to the Google Groups 
"OrientDB" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to