LET StatementThe LET statement allows you to create parameters to store any value, including the results of queries or the outputs of expressions. These parameters can then be referenced throughout your SurrealQL code, making your queries more dynamic and reusable.
The syntax for the LET statement is straightforward. The parameter name is prefixed with a $ symbol.
You can use the LET statement to store simple values or query results. For example, storing a string value and then using it in a CREATE statement:
The LET statement is also useful for storing the results of a query, which can then be used in subsequent operations:
IF ELSESurrealQL allows you to define parameters based on conditional logic using IF ELSE statements:
You can define anonymous functions also known as closures using the LET statement. These functions can be used to encapsulate reusable logic and can be called from within your queries. Learn more about anonymous functions in the Data model section.
SurrealDB comes with pre-defined parameters that are accessible in any context. However, parameters created using LET are not accessible within the scope of these pre-defined parameters.
Furthermore, some pre-defined parameters are protected and cannot be overwritten using LET:
Attempting to redefine protected parameters will result in an error:
LET $auth = 1; LET $session = 10;
Available since: v2.0.0
Type safety in a LET statement can be ensured by adding a : (a colon) and the type name after the LET keyword.
LET $number: int = "9";
Using typed LET statements is a good practice when prototyping code or when getting used to SurrealQL for the first time. Take the following example that attempts to count the number of true values in a field by filtering out values that are not true, without noticing that the field actually contains strings instead of booleans. The query output ends up being 3, rather than the expected 2.
CREATE some:record SET vals = ["true", "false", "true"]; some:record.vals.filter(|$val| $val = true).len();
Breaking this into multiple typed LET statements shows the error right away.
With the location of the error in clear sight, a fix is that much easier to implement.
Multiple possible types can be specified in a LET statement by adding a | (vertical bar) in between each possible type.
LET $number: int | string = "9";
Even complex types such as objects can be included in a typed LET statement.
LET $error_info: string | { error: string } = { error: "Something went wrong plz help" };
For more information on this pattern, see the page on literals.
The LET statement in SurrealDB is versatile, allowing you to store values, results from subqueries, and even define anonymous functions. Understanding how to use LET effectively can help you write more concise, readable, and maintainable queries.