DayOfMonth

DayOfMonth( timestamp )

Description

The DayOfMonth function extracts the day of the month from a Timestamp.

Parameters

Argument Type Definition and Requirements

timestamp

A timestamp.

Returns

A Number which represents the value of the day of the month, in the range 1 to 31, from the provided timestamp.

Examples

The query below returns the day of the month from a timestamp:

client.query(
  q.DayOfMonth(q.Time('2019-04-29T12:51:17Z'))
)
.then((ret) => console.log(ret))
29

Was this article helpful?

We're sorry to hear that.
Tell us how we can improve! documentation@fauna.com

Thank you for your feedback!