Date
Date( str )
Date( str )
Date( str )
Date( str )
date( str )
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:
client.Query(
Date("1970-01-01")
);
FaunaDate(1970-01-01 12:00:00 AM)
result, err := client.Query(
f.Date("1970-01-01"))
if err != nil {
fmt.Fprintln(os.Stderr, err)
} else {
fmt.Println(result)
}
{0 62135596800 <nil>}
System.out.println(
client.query(
Date(Value("1970-01-01"))
).get());
1970-01-01
client.query(
q.Date('1970-01-01')
)
.then((ret) => console.log(ret))
.catch((err) => console.error('Error: %s', err))
Date("1970-01-01")
result = client.query(
q.date("1970-01-01")
)
print(result)
1970-01-01
client.query(Date("1970-01-01"))
1970-01-01
Was this article helpful?
We're sorry to hear that.
Tell us how we can improve!
Visit Fauna's forums
or email docs@fauna.com
Thank you for your feedback!