Cd/ls through the directory layer?

To be clear: I do not want to list all the kv pairs.

Imagine a vfs consisted solely of directories (but no files, no kv pairs) consisting of the DirectoryLayer directories we have defined in fdb.

Is there a way, in the fdbcli (or some other tool) to cd/ls through this vfs ? I just want to be able to cd into sub directories, cd .. to parent dir, ls to see all sub directories. The goal is to get a gist / high level view of fdb directory layer structure, without looking at any kv pairs.

Thanks!

It’s a bit cumbersome in it’s current form, but you can use FQL (my query language) to do this. Currently, I doesn’t have the concept of a “current directory” so you’ll need to query the directories at the root:

/<>
/users
/tasks
/auth

Then you’ll query them at the second layer, etc:

/users/<>
/user/name
/user/address
/user/bio

Let me know what you think. It’s still a work in progress.