获取部分文档

时间:2015-03-19 10:28:51

标签: rethinkdb

是否可以在RethinkDB中获取文档的特定部分?例如:

// Doesn't retrieve the password field
r.db("test").get("some-id", { "password": false }).run()

我正在寻找一个类似于projection参数在MongoDB的db.find()中的工作方式的功能。

1 个答案:

答案 0 :(得分:1)

发现它!我正在寻找的命令是pluckwithout