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