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