Is there an easy way to query a cluster for all vertices that have no incoming edges?

link|improve this question

55% accept rate
feedback

2 Answers

up vote 1 down vote accepted

This is more complete because also covers the case the collection exists but it's empty:

select from the_cluster where in is null or in.size() = 0
link|improve this answer
should be a single =, though. – Thilo Jan 13 at 11:44
You're right, Java fault! – Lvca Jan 14 at 17:09
feedback

The following SQL seems to work (as edges are stored as fields in and out on the vertices):

select from the_cluster where in is null
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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