time.dayOfYear() → number
Return the day of the year of a time object as a number between 1 and 366 (following ISO 8601 standard).
Example: Retrieve all the users who were born the first day of a year.
r.table("users").filter(
r.row("birthdate").dayOfYear().eq(1)
)
Couldn't find what you were looking for?
Contribute: edit this page or open an issue