ToTime

Copied!
( 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

value

Any

The value to attempt to convert to a timestamp type.

Returns

A timestamp type of value.

Examples

The query below converts the string "2015-02-20T06:30:00Z" to a timestamp.

Copied!
client.query(
  q.('2015-02-20T06:30:00Z')
)
.then((ret) => console.log(ret))
("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!