Retrieve multiple documents from a table by their primary keys or indexed values.
table.getAll(key1, key2, ..., keyN) → cursor
const cursor = await r.table('users').getAll('user_1', 'user_2', 'user_3').run(client); const users = await cursor.toArray(); console.table(users);
get
filter
table