Back to top

ReQL command: epochTime

Command syntax

r.epochTime(number) → time

Description

Create a time object based on seconds since epoch. The first argument is a double and will be rounded to three decimal places (millisecond-precision).

Example: Update the birthdate of the user “John” to November 3rd, 1986.

r.table("user").get("John").update(
    r.hashMap(birthdate, r.epochTime(531360000))
).run(conn);

Get more help

Couldn't find what you were looking for?