DayOfWeek
DayOfWeek( timestamp )
DayOfWeek( timestamp )
DayOfWeek( timestamp )
DayOfWeek( timestamp )
day_of_week( timestamp )
day_of_week timestamp
DayOfWeek( timestamp )
DayOfWeek( timestamp )
Description
The DayOfWeek
function extracts the day of the week from a
Timestamp.
Returns
A Number which represents the value of the day of the week, in the range 1 to 7 (where 1 is Monday), from the provided timestamp.
Examples
The query below returns the day of the week from a timestamp:
curl https://db.fauna.com/ \
-u fnAChGwBcAACAO70ziE0cfROosNJHdgBmJU1PgpL: \
-d '{ "day_of_week": { "time": "2019-04-29T12:51:17Z" } }'
client.Query(DayOfWeek(Time("2019-04-29T12:51:17Z")));
System.out.println(
client.query(
DayOfWeek(Time(Value("2019-04-29T12:51:17Z")))
).get()
);
result, _ := client.Query(f.DayOfWeek(f.Time("2019-04-29T12:51:17Z")))
fmt.Println(result)
println(Await.result(
client.query(DayOfWeek(Time("2019-04-29T12:51:17Z"))),
5.seconds
))
result = client.query(q.day_of_week(q.time("2019-04-29T12:51:17Z")))
print(result)
puts $client.query { day_of_week time "2019-04-29T12:51:17Z" }
client.query(DayOfWeek(Time(fromString: "2019-04-29T12:51:17Z")))
client.query(q.DayOfWeek(q.Time("2019-04-29T12:51:17Z"))
.then((ret) => console.log(ret))
HTTP/1.1 200 OK
{ "resource": 1 }
1
1
1
1
1
1
1
1
Was this article helpful?
We're sorry to hear that.
Tell us how we can improve!
documentation@fauna.com
Thank you for your feedback!