FQL v4 will be decommissioned on June 30, 2025. Ensure that you complete your migration from FQL v4 to FQL v10 by that date. For more details, review the migration guide. Contact support@fauna.com with any questions. |
ToSeconds
This reference topic applies to FQL v4. Go to this page for the latest FQL v10 reference topics. |
ToSeconds( value )
to_seconds( value )
ToSeconds( value )
ToSeconds( value )
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
Parameter | 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.
[ 1, 1594038896 ]
[1, 1594038896]
[1 1594038896]
Arr(LongV(1), LongV(1594038896))
[ 1, 1594038896 ]
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!