Back to top

ReQL command: seconds

Command syntax

time.seconds() → number

Description

Return the seconds in a time object as a number between 0 and 59.999 (double precision).

Example: Return the post submitted during the first 30 seconds of every minute.

r.table("posts").filter(lambda post:
    post["date"].seconds() < 30
).run(conn)

Get more help

Couldn't find what you were looking for?