TimeAdd
Not available in this language yet.
Not available in this language yet.
TimeAdd( base, offset, unit )
TimeAdd( base, offset, unit )
Not available in this language yet.
TimeAdd( base, offset, unit )
Parameters
Argument | Type | Definition and Requirements |
---|---|---|
|
A timestamp or date to add to.
|
|
|
The number of |
|
|
The When When
|
Returns
When base
is a Date, a new Date which represents base
with
offset
unit
s added to it.
When base
is a Timestamp, a new Timestamp which represents base
with offset
unit
s added to it.
Examples
The following query returns a Timestamp representing one day after the Unix epoch:
Not available in this language yet.
Not available in this language yet.
Not available in this language yet.
System.out.println(
client.query(
TimeAdd(Epoch(0, "second"), 1, "day")
).get());
1970-01-02T00:00:00Z
client.query(
q.TimeAdd(q.Epoch(0, 'second'), 1, 'day')
)
.then((ret) => console.log(ret))
Time("1970-01-02T00:00:00Z")
Not available in this language yet.
println(Await.result(
client.query(
TimeAdd(Epoch(0, "second"), 1, "day")
),
5.seconds
))
1970-01-02T00:00:00Z
The following query returns a Timestamp 5 seconds in the future from now:
Not available in this language yet.
Not available in this language yet.
Not available in this language yet.
System.out.println(
client.query(
Arr(
Now(),
TimeAdd(Now(), 5, "seconds")
)
).get());
[2019-10-22T16:45:19.223863Z, 2019-10-22T16:45:24.223863Z]
client.query([
q.Now(),
q.TimeAdd(q.Now(), 5, 'seconds'),
])
.then((ret) => console.log(ret))
[ Time("2019-10-22T16:45:19.223863Z"),
Time("2019-10-22T16:45:24.223863Z") ]
Not available in this language yet.
println(Await.result(
client.query(
Arr(
Now(),
TimeAdd(Now(), 5, "seconds")
)
),
5.seconds
))
[2019-10-22T16:45:19.223863Z, 2019-10-22T16:45:24.223863Z]
The following query returns a Date 1 day after 2019-11-26:
Not available in this language yet.
Not available in this language yet.
Not available in this language yet.
System.out.println(
client.query(
TimeAdd(Date("2019-11-26"), 1, "day")
).get());
2019-11-27
client.query(
q.TimeAdd(Date('2019-11-26'), 1, 'day')
)
.then((ret) => console.log(ret))
Date("2019-11-27")
Not available in this language yet.
println(Await.result(
client.query(
TimeAdd(Date("2019-11-26"), 1, "day")
),
5.seconds
))
2019-11-27
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!