At
At( timestamp, expression )
At( timestamp, expression )
At( timestamp, expression )
At( timestamp, expression )
at( timestamp, expression )
At( timesamp, expression )
Description
The At
function executes a temporal query, a query which examines the
data in the past. The timestamp
parameter determines the data
available for viewing by creating a virtual snapshot of the data which
was current at that date and time. All reads from the associated
expression
is then executed on that virtual snapshot. In contrast, all
write operations must be executed at the current time. Attempting a
write operation at any other time produces an error.
Parameters
Argument | Type | Definition and Requirements |
---|---|---|
|
A Function Ref |
The date and time of the virtual snapshot of the data. |
|
Expressions |
The FQL statement to be executed. |
Examples
The query below creates a snapshot of the data to read at "1970-01-01" and retrieves all collections that existed on that date.
client.Query(
At(Time("1970-01-01T00:00:00Z"), Paginate(Ref("collections"))));
{ "data": [ ] }
curl https://db.fauna.com/ \
-u fnAChGwBcAACAO70ziE0cfROosNJHdgBmJU1PgpL: \
-d '{
"at": { "@ts": "1970-01-01T00:00:00Z" },
"expr": { "paginate": { "@ref": "classes" } }
}'
HTTP/1.1 200 OK
{ "resource": { "data": [ ] } }
result, _ := client.Query(
f.At(
f.Time("1970-01-01T00:00:00Z"),
f.Paginate(f.Collections()),
),
)
fmt.Println(result)
map[data:[]]
System.out.println(
client.query(
At(
Time(Value("1970-01-01T00:00:00Z")),
Paginate(Ref("collections"))
)
).get());
{data: []}
client.query(
q.At(
q.Time('1970-01-01T00:00:00Z'),
q.Paginate(q.Collections()),
)
)
.then((ret) => console.log(ret))
{ data: [] }
client.query(
q.at(
q.time("1970-01-01T00:00:00Z"),
q.paginate(Ref("collections"))
))
{ "data": [ ] }
client.query(
At(Time("1970-01-01T00:00:00Z"), Paginate(Ref("collections"))))
{ "data": [ ] }
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!