First of all I've already tried to google for a solution but without any 
luck.
I have a simple relation: User->owns->Group. I want to check that a 
particular group really belongs to a particular user.
I am trying to run this query:

final Vertex groupVx = database.getVertex(groupId);
long count = groupVx.query().direction(Direction.IN).labels("owns").labels(
"User").has("@rid", userId);


   1. The query above fails, because User is not an edge. Is it possible to 
   fix the query above to get a desired result using Blueprints?
   2. Am I right that GremlinPipeline is implemented by Tinkerpop and all 
   queries are done in-memory without using native query syntax of OrientDB?



-- 

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