Using OrientDB's query language, how can find all vertices in cluster a that have no outgoing edge ending in a vertex of class b (i.e. no direct neighbour vertex of class b)? It does not matter if they have other outgoing edges.

link|improve this question

55% accept rate
feedback

1 Answer

If you've a class A mapped to cluster a you can do:

select from A where not( out.in.@class in ['b'] )

That means cross the "out" property of A records (as edges), then the "in" property (the vertex) and then get the class name (@class). I've used the IN operator instead of = (equals) because "out.in.@class" returns a collection of class names.

If you want have no A class and you have to go through the cluster A use cluster: syntax:

 select from cluster:A where not( out.in.@class in ['b'] )

I've tested against latest 1.0rc8-SNAPSHOT and works.

link|improve this answer
Is that really the syntax? There is no difference between the two cases. I cannot get it to work (on rc7). I get unknown function "not". Does the double quote at the end need to be matched? – Thilo Jan 15 at 3:00
Works only with 1.0rc8-SNAPSHOT – Lvca Jan 16 at 16:45
Okay, will check after it's released. Any way to do it with an earlier version? And what is the meaning of the double quote at the end? – Thilo Jan 16 at 23:47
Sorry for " it comes from cut & paste. With previous release there is no way to do it in one shot unless you use GREMLIN function (use the Graph(ed) distribution) like "SELECT FROM GREMLIN(<expression>) FROM A". More on gremlin expressions: github.com/tinkerpop/gremlin/wiki – Lvca Jan 19 at 19:03
Okay, last question, then you get your +1 ;-) : What is the difference between the cluster-syntax query and the first one? They look exactly the same? – Thilo Jan 20 at 0:31
show 5 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.