ToSeconds
Not available in this language yet.
Not available in this language yet.
ToSeconds( value )
ToSeconds( value )
Not available in this language yet.
ToSeconds( value )
Description
The ToSeconds
function converts a value to the number of seconds since
Unix epoch (midnight, January 1, 1970), if possible.
Attempting to convert a value to a number of seconds which has no numeric representation results in an "invalid argument" error.
Parameters
Argument | Type | Definition and Requirements |
---|---|---|
|
Any |
The value to attempt to convert to a number of seconds since Unix epoch. If you provide a Number, it is interpreted as the number of microseconds since Unix epoch. |
Examples
The following query calls ToSeconds
twice:
-
To convert 1 second after Unix epoch into seconds.
-
To convert the current transaction time into seconds.
Not available in this language yet.
Not available in this language yet.
System.out.println(
client.query(
Arr(
ToSeconds(Epoch(1, "second")),
ToSeconds(Time("2020-07-06T12:34:56.789Z"))
)
).get());
[1, 1594038896]
client.query([
q.ToSeconds(q.Epoch(1, 'second')),
q.ToSeconds(q.Time('2020-07-06T12:34:56.789Z')),
])
.then((ret) => console.log(ret))
.catch((err) => console.error('Error: %s', err))
[ 1, 1594038896 ]
Not available in this language yet.
println(Await.result(
client.query(
Arr(
ToSeconds(Epoch(1, "second")),
ToSeconds(Time("2020-07-06T12:34:56.789Z"))
)
),
5.seconds
))
[1, 1594038896]
Was this article helpful?
We're sorry to hear that.
Tell us how we can improve!
Visit Fauna's forums
or email docs@fauna.com
Thank you for your feedback!