Year
Time( str )
Time( str )
Time( str )
Time( str )
Time( str )
Time( str )
Description
The Year
function extracts the year from a
Timestamp.
Examples
The query below returns the year from a timestamp:
client.Query(
Year(Time("2019-04-29T12:51:17Z"))
);
LongV(2019)
result, err := client.Query(
f.Year(f.Time("2019-04-29T12:51:17Z")))
if err != nil {
fmt.Fprintln(os.Stderr, err)
} else {
fmt.Println(result)
}
2019
System.out.println(
client.query(
Year(Time(Value("2019-04-29T12:51:17Z")))
).get()
);
2019
client.query(
q.Year(q.Time('2019-04-29T12:51:17Z'))
)
.then((ret) => console.log(ret))
.catch((err) => console.error('Error: %s', err))
2019
result = client.query(
q.year(q.time("2019-04-29T12:51:17Z"))
)
print(result)
2019
println(Await.result(
client.query(Year(Time("2019-04-29T12:51:17Z"))),
5.seconds
))
2019
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!