Hi fellow OrientDBers I have a question regarding conditional traversal. I have two computers running identical copies of the same graph database. The second one was created from the first using restore function in console. I have a property 'prob' (probability) in edges (link class) which I want to use as condition in traversal. If an edge has probability less than some value (now 0.5) the traversal should stop at the node before this edge. Only edges have the 'prob' field.
The query I run is "traverse * from (select from email where address = '[email protected]') while (prob > 0.5 OR @class <> 'link')". This works in the original database but in the restored copy, the result set is empty. Is there a good reason for this behaviour or am I missing something? j. -- --- 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.
