I read it on orientDB documentation but can't get a hold of it. It would be great if someone could explain the use of $parent and $current in detail. In a few examples I tried $parent.$parent.$current and $parent.$current, both give the same results which I feel should not happen. Below are my assumption:
- $current gives access to the record/node currently being processed
- $parent gives access to the parent of current record/node being processed
Your second assumption is wrong. It gives you access to the variables of the parent query (useful when calling traverse in a sub-query as stated here).
An example: