Why I stopped wearing a bike helmet
cyclingtips.com3 pointsby lneves1 comments
find . -type d
edit: for the same output as your command you can use: dir -l db.blogposts.find( { "comments.0.by" : "Abe" } )
PostgreSQL doesn't have JSON support but it does have XML/Xpath support. select * from blogposts where (xpath('/comments[0]/@by', doc))::text[] = array['Abe']
Yes it's a little more verbose but not terrible so... at least in my opinion.