Is there a tool like jq for dhall?

Not sure if this is even possible, but is there a tool like jq that can consume a stream of dhall objects and pretty print them as they come in? It would be great if it had a form of filtering as well.

You can just use Dhall itself (the dhall executable) for that kind of functionality.

$ echo "{ a = 1, b = {c = 2, d = 3 }}" | dhall --file <(echo "let _ = "; cat -; echo "in _.b.c")
2