AleksLitynski/teller

Support recursive "get" requests

Closed this issue · 1 comments

Currently, you can only get a single node at a time. I would like you to be able to get a node and all it's neighbors to a depth of N.

A get request will now look for a "params" property and a "depth" property off of that.

If you say 0 depth, it will just return the node.
1 depth would return the node and (if it's a noun) the relatinships off of it. It would not return the values of those realationships.
3 deep would return those values.
etc.