DayOfWeek
DayOfWeek( timestamp )
DayOfWeek( timestamp )
DayOfWeek( timestamp )
DayOfWeek( timestamp )
day_of_week( 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:
client.Query(
DayOfWeek(Time("2019-04-29T12:51:17Z"))
);
LongV(1)
result, err := client.Query(
f.DayOfWeek(f.Time("2019-04-29T12:51:17Z")))
if err != nil {
fmt.Fprintln(os.Stderr, err)
} else {
fmt.Println(result)
}
1
System.out.println(
client.query(
DayOfWeek(Time(Value("2019-04-29T12:51:17Z")))
).get()
);
1
client.query(
q.DayOfWeek(q.Time('2019-04-29T12:51:17Z'))
)
.then((ret) => console.log(ret))
.catch((err) => console.error('Error: %s', err))
1
result = client.query(
q.day_of_week(q.time("2019-04-29T12:51:17Z"))
)
print(result)
1
println(Await.result(
client.query(DayOfWeek(Time("2019-04-29T12:51:17Z"))),
5.seconds
))
1
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!