Hour
Hour( timestamp )
Hour( timestamp )
Hour( timestamp )
Hour( timestamp )
hour( timestamp )
Hour( timestamp )
Description
The Hour
function extracts the hour from a
Timestamp.
Returns
A Number which represents the value of the hour, in the range 0 to 23, from the provided timestamp.
Examples
The query below returns the hour from a timestamp:
client.Query(Hour(Time("2019-04-29T12:51:17Z")));
12
curl https://db.fauna.com/ \
-u fnAChGwBcAACAO70ziE0cfROosNJHdgBmJU1PgpL: \
-d '{ "hour": { "time": "2019-04-29T12:51:17Z" } }'
HTTP/1.1 200 OK
{ "resource": 12 }
result, _ := client.Query(f.Hour(f.Time("2019-04-29T12:51:17Z")))
fmt.Println(result)
12
System.out.println(
client.query(
Hour(Time(Value("2019-04-29T12:51:17Z")))
).get()
);
12
client.query(
q.Hour(q.Time('2019-04-29T12:51:17Z'))
)
.then((ret) => console.log(ret))
12
result = client.query(q.hour(q.time("2019-04-29T12:51:17Z")))
print(result)
12
println(Await.result(
client.query(Hour(Time("2019-04-29T12:51:17Z"))),
5.seconds
))
12
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!