ToTime
Copied!
ToTime( value )
Description
The ToTime
function converts a value to a timestamp type, if possible.
Attempting to convert a value to a timestamp which has no timestamp representation results in an "invalid argument" error.
Parameters
Argument | Type | Definition and Requirements |
---|---|---|
|
Any |
The value to attempt to convert to a timestamp type. |
Examples
The query below converts the string "2015-02-20T06:30:00Z" to a timestamp.
Copied!
client.query(
q.ToTime('2015-02-20T06:30:00Z')
)
.then((ret) => console.log(ret))
Time("2015-02-20T06:30: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!