获取部分文档
Fetch partial document
是否可以在 RethinkDB 中获取文档的特定部分?例如:
// Doesn't retrieve the password field
r.db("test").get("some-id", { "password": false }).run()
我正在寻找类似于 projection 参数在 MongoDB 的 db.find() 中的工作方式的功能。
是否可以在 RethinkDB 中获取文档的特定部分?例如:
// Doesn't retrieve the password field
r.db("test").get("some-id", { "password": false }).run()
我正在寻找类似于 projection 参数在 MongoDB 的 db.find() 中的工作方式的功能。