DEFINE PARAM
DEFINE PARAM
statement
The DEFINE PARAM
statement allows you to define global (database-wide) parameters that are available to every client.
Requirements
- You must be authenticated as a root or namespace user before you can use the
DEFINE PARAM
statement. - You must select your namespace and database before you can use the
DEFINE PARAM
statement.
Statement syntax
SurrealQL Syntax
DEFINE PARAM $@name VALUE @value;
Example usage
Below shows how you can create a namespace using the DEFINE PARAM
statement.
DEFINE PARAM $endpointBase VALUE "https://dummyjson.com";
Then, simply use the global parameter like you would with any variable.
RETURN http::get($endpointBase + "/products");