I have a table of \"person\" data, which has a unique key \"id\". I have a list of id\'s that I want to get the data for which I\'ll be sending as a JSON array from the cli
You can use .expr with .map for a cleaner alternative to .eqJoin
.expr
.map
.eqJoin
r.expr(array).map(function(id) { return r.table('user').get(id); });