Back to top

ReQL command: now

Command syntax

r.now() → time

Description

Return a time object representing the current time in UTC. The command now() is computed once when the server receives the query, so multiple instances of r.now() will always return the same time inside a query.

Example: Add a new user with the time at which he subscribed.

r.table("users").insert({
    name: "John",
    subscription_date: r.now()
}).run(conn, callback)

Get more help

Couldn't find what you were looking for?