dfs is:module
Depth-first search algorithms.
Names consist of:
- An optional direction parameter, specifying which nodes to visit
next.
- u undirectional: ignore edge direction
- r reversed: walk edges in reverse
- x user defined: speciy which paths to follow
- "df" for depth-first
- A structure parameter, specifying the type of the
result.
- s Flat list of
results
- f Structured Tree of
results
- An optional "With", which instead of putting the found nodes
directly into the result, adds the result of a computation on them
into it.
- An optional prime character, in which case all nodes of the graph
will be visited, instead of a user-given subset.
MongoDB GridFS implementation