ToDate

Copied!
( value )

Description

The ToDate function converts a value to a date type, if possible.

Attempting to convert a value to a date which has no date representation results in an "invalid argument" error.

Parameters

Argument Type Definition and Requirements

value

Any

The value to attempt to convert to a date type.

Returns

A date type of value.

Examples

The query below converts the string "2018-06-06" to a date.

Copied!
client.query(
  q.('2018-06-06')
)
.then((ret) => console.log(ret))
("2018-06-06")

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!