CREATE FUNCTION
- Developer Preview
The CREATE FUNCTION
statement enables you to create a user-defined function.
This is a Developer Preview feature, intended for development purposes only. Do not use this feature in production. No Enterprise Support is provided for Developer Preview features. Refer to Developer Preview Mode for more information. |
Syntax
There are two types of user-defined function:
-
Inline functions are defined using N1QL expressions, including subqueries. They enable you to name and reuse complex or repetitive expressions, including subqueries, in order to simplify your queries.
-
External functions are defined using an external language. They enable you to create functions that may be difficult or impossible to define using built-in N1QL expressions. The only supported language is JavaScript.
The CREATE FUNCTION
statement takes a different syntax depending on the type of function you are creating.
create-function ::= create-function-inline | create-function-external

Inline Functions
There are two alternative syntaxes for defining an inline function: a syntax with braces {}
and a syntax using the LANGUAGE
keyword.
The two syntaxes are synonymous.
create-function-inline ::= CREATE FUNCTION name '(' [ parameter ( ',' parameter )* ] ')' ( '{' expression '}' | LANGUAGE INLINE AS expression )

- name
-
The name of the function. This may be an unqualified identifier, such as
func1
or`func-1`
, or a qualified identifier with a namespace, such asdefault:func1
. It is recommended to use an unqualified identifier for the function name. This may not be the same as a reserved keyword. A function name with a namespace may have the same name as a reserved keyword.You cannot create a function with the same name as an existing user-defined function. If you want to redefine a function, you must drop the function first, then create it again.
- parameter
-
[Optional] The name of a function argument. If you specify named parameters for the function, then you must call the function with exactly the same number of parameters at execution time. If you specify no parameters for the function, then you may call the function with any number of parameters at execution time, or with none.
- expression
-
The N1QL expression that defines the function. You can use any valid expression. If you specified named parameters for the function, you can use these in the expression to represent arguments passed to the function at execution time. If you did not specify any named parameters for the function, any arguments passed to the function at execution time are held in an array named
args
.-
If the expression contains a parameter that has the same name as a field in the document, it will always refer to the parameter. To distinguish between the field and the parameter, prefix the field with the keyspace name, for example
`travel-sample`.type
. To avoid this ambiguity, you should use unique parameter names that do not clash with document field names, such asvType
. -
Functions may return only one value, of any valid N1QL type. For inline functions, the result and type of the function are the result and type of the expression. If you need to return multiple values, construct an array.
-
External Functions

- name
-
The name of the function. This may be an unqualified identifier, such as
func1
or`func-1`
, or a qualified identifier with a namespace, such asdefault:func1
. It is recommended to use an unqualified identifier for the function name. This may not be the same as a reserved keyword. A function name with a namespace may have the same name as a reserved keyword.You cannot create a function with the same name as an existing user-defined function. If you want to redefine a function, you must drop the function first, then create it again.
- parameter
-
[Optional] The name of a function argument. If you specify named parameters for the function, then you must call the function with exactly the same number of parameters at execution time. If you specify no parameters for the function, then you may call the function with any number of parameters at execution time, or with none.
- library
-
The name of the JavaScript library that contains the function you want to use. You must create the JavaScript library and the JavaScript function using the N1QL Functions REST API. For details, refer to Functions REST API.
- object
-
The name of the JavaScript function that you want to use for the user-defined function. The supported JavaScript syntax is the same as for the Eventing service. For details, refer to Language Constructs.
Examples
For simplicity, none of these examples implement any data validation or error checking.
This statement creates a function called celsius
, which converts Fahrenheit to Celsius.
The function does not define any arguments.
The expression converts the first argument supplied at execution time, which is stored in the first member in the args
array.
CREATE FUNCTION celsius() LANGUAGE INLINE AS (args[0] - 32) * 5/9;
EXECUTE FUNCTION celsius(100);
[
37.77777777777778
]
This statement creates a function called fahrenheit
, which converts Celsius to Fahrenheit.
The function does not define any arguments.
The expression converts the first argument supplied at execution time, which is stored in the first member in the args
array.
CREATE FUNCTION fahrenheit() { (args[0] * 9/5) + 32 };
EXECUTE FUNCTION fahrenheit(100, "ignore this");
[
212
]
As no arguments were specified by the function definition, you can use any number of arguments when you call the function. Arguments which are not used by the function expression are ignored.
The following statement creates a function called lstr
, which returns the specified number of characters from the left of a string.
The expression expects two named arguments: vString
, which is the string to work with, and vLen
, which is the number of characters to return.
CREATE FUNCTION lstr(vString, vLen) LANGUAGE INLINE AS SUBSTR(vString, 0, vLen);
EXECUTE FUNCTION lstr("Couchbase", 5, "ignore this");
[
{
"code": 10104,
"msg": "Incorrect number of arguments supplied to function lstr - cause: lstr"
}
]
As the arguments were specified by the function definition, you must use the same number of arguments when you call the function. If you supply the wrong number of arguments, an error is generated.
The following statement creates a function called rstr
, which returns the specified number of characters from the right of a string.
The expression expects two named arguments: vString
, which is the string to work with, and vLen
, which is the number of characters to return.
CREATE FUNCTION rstr(vString, vLen) { SUBSTR(vString, LENGTH(vString) - vLen, vLen) };
EXECUTE FUNCTION rstr("Couchbase", 4);
[
"base"
]
The following statement creates a function called locations
, which selects name and address information from all documents of the specified type in the travel-sample
bucket.
CREATE FUNCTION locations(vType) { (
SELECT id, name, address, city
FROM `travel-sample`
WHERE type = vType) };
EXECUTE FUNCTION locations("landmark");
[
[
{
"address": "Prince Arthur Road, ME4 4UG",
"city": "Gillingham",
"id": 10019,
"name": "Royal Engineers Museum"
},
{
"address": "4 High Street, ME7 1BB",
"city": "Gillingham",
"id": 10020,
"name": "Hollywood Bowl"
},
...
]
]
The following command registers a JavaScript function called add
in a library called math
.
$ curl -v -X POST http://localhost:8093/functions/v1/libraries/math/functions/add -H 'content-type: application/json' -d '{"name": "add", "code": "function add(a, b) { let data = a + b; return data; }"}' -u Administrator:password
The following statement creates a function called javaScriptAdd
, which calls the JavaScript add
function from the math
library.
CREATE FUNCTION javaScriptAdd() LANGUAGE JAVASCRIPT AS { "math", "add" };
EXECUTE FUNCTION javaScriptAdd(2, 3);
[
5
]
Related Links
-
To execute user-defined functions, refer to EXECUTE FUNCTION.
-
To include user-defined functions in an expression, refer to User-Defined Functions.
-
To view user-defined functions, refer to Monitor Queries.
-
To drop user-defined functions, refer to DROP FUNCTION.