Back to top

ReQL command: js

Command syntax

r.js(jsString[, {timeout: <number>}]) → value

Description

Create a javascript expression.

timeout is the number of seconds before r.js times out. The default value is 5 seconds.

Whenever possible, you should use native ReQL commands rather than r.js for better performance.

Example: Concatenate two strings using JavaScript.

r.js("'str1' + 'str2'").run(conn, callback)

Example: Select all documents where the ‘magazines’ field is greater than 5 by running JavaScript on the server.

r.table('marvel').filter(
    r.js('(function (row) { return row.magazines.length > 5; })')
).run(conn, callback)

Example: You may also specify a timeout in seconds (defaults to 5).

r.js('while(true) {}', {timeout:1.3}).run(conn, callback)

Get more help

Couldn't find what you were looking for?