ToDate

ToDate( value )
ToDate( value )
ToDate( value )
ToDate( value )
ToDate( value )
ToDate( value )
Not available in this language yet.
Not available in this language yet.

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.

Value result = await client.Query(
  ToDate("2018-06-06")
);

IResult<Value> data = result.To<Value>();
data.Match(
  Success: value => Console.WriteLine($"{value}"),
  Failure: error => Console.WriteLine($"Query failed:\n{error}")
);
result, _ := client.Query(ToDate("2018-06-06"))
fmt.PrintLn(result)
System.out.println(
    client.query(
        ToDate(Value("2018-06-06"))
    ).get());
client.query(
  q.ToDate('2018-06-06')
)
.then((ret) => console.log(ret))
print(client.query(
  q.to_date("2018-06-06")
))
println(Await.result(
  client.query(
    ToDate("2018-06-06")
  ),
  5.seconds
))
Not available in this language yet.
Not available in this language yet.
FaunaDate(2018-06-06 12:00:00 AM)
{0 63663840000 <nil>}
2018-06-06
Date("2018-06-06")
2018-06-06
2018-06-06

Was this article helpful?

We're sorry to hear that.
Tell us how we can improve! documentation@fauna.com

Thank you for your feedback!