DayOfYear

DayOfYear( timestamp )
DayOfYear( timestamp )
DayOfYear( timestamp )
DayOfYear( timestamp )
day_of_year( timestamp )
day_of_year timestamp
DayOfYear( timestamp )
DayOfYear( timestamp )

Description

The DayOfYear function extracts the day of the year from a Timestamp.

Parameters

Argument Type Definition and Requirements

timestamp

A timestamp.

Returns

A Number which represents the value of the day of the year, in the range 1 to 366, from the provided timestamp.

Examples

The query below returns the day of the year from a timestamp:

curl https://db.fauna.com/ \
    -u fnAChGwBcAACAO70ziE0cfROosNJHdgBmJU1PgpL: \
    -d '{ "day_of_year": { "time": "2019-04-29T12:51:17Z" } }'
client.Query(DayOfYear(Time("2019-04-29T12:51:17Z")));
System.out.println(
    client.query(
        DayOfYear(Time(Value("2019-04-29T12:51:17Z")))
    ).get()
);
result, _ := client.Query(f.DayOfYear(f.Time("2019-04-29T12:51:17Z")))
fmt.Println(result)
println(Await.result(
  client.query(DayOfYear(Time("2019-04-29T12:51:17Z"))),
  5.seconds
))
result = client.query(q.day_of_year(q.time("2019-04-29T12:51:17Z")))
print(result)
puts $client.query { day_of_year time "2019-04-29T12:51:17Z" }
client.query(DayOfYear(Time(fromString: "2019-04-29T12:51:17Z")))
client.query(
  q.DayOfYear(q.Time('2019-04-29T12:51:17Z'))
)
.then((ret) => console.log(ret))
HTTP/1.1 200 OK
{ "resource": 119 }
119
119
119
119
119
119
119
119

Was this article helpful?

We're sorry to hear that.
Tell us how we can improve! documentation@fauna.com

Thank you for your feedback!