>From studio just enter ordinary gremlin query, it will work.
>From Java there are three options:
1. Something like this
 OrientGraph graph = getConnector().getConnection(false); //your way of 
obtaining OrientGraph
 OGremlinHelper.global().create();
 OCommandGremlin cmd = new OCommandGremlin(query);
 Object result = graph.command(cmd).execute();
2. Via rexster, look here 
<http://www.orientechnologies.com/docs/last/Rexster.html>. 
3. Blueprints support pipelines(actually it is what gremlin is wrapped to 
when fetching), you can use them straight with the similar functionality. 
Just learn what blueprints are more close.

-- 

--- 
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