FQL v4 will be decommissioned on June 30, 2025. Ensure that you complete your migration from FQL v4 to FQL v10 by that date. For more details, review the migration guide. Contact support@fauna.com with any questions. |
At
This reference topic applies to FQL v4. Go to this page for the latest FQL v10 reference topics. |
At( timestamp, expression )
at( timestamp, expression )
At( timestamp, expression )
At( timestamp, expression )
At( timestamp, 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
Parameter | Type | Definition and Requirements | ||
---|---|---|---|---|
|
Timestamp |
The timestamp of the virtual snapshot of the data.
|
||
|
FQL expression |
The FQL statement to be executed. |
Examples
The following query creates a snapshot of the data to read at "1970-01-01" and retrieves all collections that existed on that date:
{ data: [] }
{'data': []}
map[data:[]]
ObjectV(data: Arr())
{ 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!