Is it possible to fetch specific parts of a document in RethinkDB? For instance:
// Doesn't retrieve the password field
r.db("test").get("some-id", { "password": false }).run()
I'm looking for a feature that is similar to how the projection argument works in MongoDB's db.find().