Date
Copied!
Date( str )
Description
The Date
function constructs a Date from an
ISO 8601 formatted date string.
Date only accepts a date string. An error occurs if you include
any time information.
|
Returns
A Date type which represents the converted string.
Examples
The following query returns a Date constructed from the provided string:
Copied!
client.query(q.Date('1970-01-01'))
.then((ret) => console.log(ret))
FaunaDate { value: '1970-01-01' }
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!