In both Java and SQL I can recurse through a list of Vertices to get all linked nodes. But I can't seem to get the same result when using fetchPlan.
This returns the correct graph (all nodes linked to the parent but not other parents that share the same child node)
traverse out('Dependency') from #33
I am looking for a fetch plan that will return the same graph. Pasted below is a fetchPlan that is close but pulls in other root nodes and I only want all the children of a single parent.
id.getRecord().toJSON("fetchPlan:out_Dependency:6")
My DB has 2 Vertices and 1 Edge connecting them. Parent -> Edge -> Child. A child might be linked to multiple parents but from parent view I only want to see his children not connected Parents.