0

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().

GlurG
  • 237
  • 2
  • 10

1 Answers1

1

Found it! The commands I was looking for were pluck and without.

GlurG
  • 237
  • 2
  • 10