Epoch
Epoch( num, unit )
Description
The Epoch
function constructs a
Timestamp relative to the Unix epoch
(1970-01-01T00:00:00Z).
The num
argument must be an integer value. The unit
argument
specifies the scale of num
.
Parameters
Argument | Type | Definition and Requirements |
---|---|---|
|
A mathematical integer value specifying the offset from epoch. |
|
|
Indicates the units used by
|
Examples
The following query adds 0 seconds to the Unix epoch (1970-01-01T00:00:00Z) and returns a timestamp:
client.query(q.Epoch(0, 'second'))
.then((ret) => console.log(ret))
FaunaTime { value: '1970-01-01T00:00:00Z' }
Is this article helpful?
Tell Fauna how the article can be improved:
Visit Fauna's forums
or email docs@fauna.com
Thank you for your feedback!