@@ -135,25 +135,27 @@ The following functions are directly supported in FluentAql.
135
135
136
136
137
137
### String functions
138
- | Description | AQL Function |
139
- | :---------------------------------------------------------------| :-------------------------------------------------------------------------------------------------------------------------------------------|
140
- | concat(...$arguments) | [ CONCAT(value1, value2, ... valueN)] ( https://www.arangodb.com/docs/stable/aql/functions-string.html#concat ) |
141
- | concatSeparator($separator, $values) | [ CONCAT_SEPARATOR(separator, value1, value2, ... valueN)] ( https://www.arangodb.com/docs/stable/aql/functions-string.html#concat_separator ) |
142
- | levenshteinDistance($value1, $value2) | [ LEVENSHTEIN_DISTANCE(value1, value2)] ( https://www.arangodb.com/docs/stable/aql/functions-string.html#levenshtein_distance ) |
143
- | lower($value) | [ LOWER(value)] ( https://www.arangodb.com/docs/stable/aql/functions-string.html#lower ) |
144
- | ltrim($value, $char) | [ LTRIM(value, char)] ( https://www.arangodb.com/docs/stable/aql/functions-string.html#ltrim ) |
145
- | regexMatches($text, $regex, $caseInsensitive) | [ REGEX_MATCHES(text, regex, caseInsensitive)] ( https://www.arangodb.com/docs/stable/aql/functions-string.html#regex_matches ) |
146
- | regexReplace($text, $regex, $replacement, $caseInsensitive) | [ REGEX_REPLACE(text, search, replacement, caseInsensitive)] ( https://www.arangodb.com/docs/stable/aql/functions-string.html#regex_replace ) |
147
- | regexSplit($text, $splitExpression, $caseInsensitive, $limit) | [ REGEX_SPLIT(text, splitExpression, caseInsensitive, limit)] ( https://www.arangodb.com/docs/stable/aql/functions-string.html#regex_split ) |
148
- | regexTest($text, $search, $caseInsensitive) | [ REGEX_TEST(text, search, caseInsensitive)] ( https://www.arangodb.com/docs/stable/aql/functions-string.html#regex_test ) |
149
- | rtrim($value, $char) | [ RTRIM(value, char)] ( https://www.arangodb.com/docs/stable/aql/functions-string.html#rtrim ) |
150
- | split($value, $separator, $limit) | [ SPLIT(value, separator, limit)] ( https://www.arangodb.com/docs/stable/aql/functions-string.html#split ) |
151
- | substitute($text, $search, $replace, $limit) | [ SUBSTITUTE(value, search, replace, limit)] ( https://www.arangodb.com/docs/stable/aql/functions-string.html#substitute ) |
152
- | substring($value, $offset, $length) | [ SUBSTRING(value, offset, length)] ( https://www.arangodb.com/docs/stable/aql/functions-string.html#substitute ) |
153
- | tokens($input, $analyzer) | [ TOKENS(input, analyzer)] ( https://www.arangodb.com/docs/stable/aql/functions-string.html#tokens ) |
154
- | trim($value, $type) | [ TRIM(value, type)] ( https://www.arangodb.com/docs/stable/aql/functions-string.html#trim ) |
155
- | upper($value) | [ UPPER(value)] ( https://www.arangodb.com/docs/stable/aql/functions-string.html#upper ) |
156
- | uuid() | [ UUID()] ( https://www.arangodb.com/docs/stable/aql/functions-string.html#uuid ) |
138
+ | Description | AQL Function |
139
+ | :--------------------------------------------------------------| :-------------------------------------------------------------------------------------------------------------------------------------------|
140
+ | concat(...$arguments) | [ CONCAT(value1, value2, ... valueN)] ( https://www.arangodb.com/docs/stable/aql/functions-string.html#concat ) |
141
+ | concatSeparator($separator, $values) | [ CONCAT_SEPARATOR(separator, value1, value2, ... valueN)] ( https://www.arangodb.com/docs/stable/aql/functions-string.html#concat_separator ) |
142
+ | findFirst($text, $search, $start, $end) | [ FIND_FIRST(text, search, start, end)] ( https://www.arangodb.com/docs/stable/aql/functions-string.html#find_first ) |
143
+ | findLast($text, $search, $start, $end) | [ FIND_Last(text, search, start, end)] ( https://www.arangodb.com/docs/stable/aql/functions-string.html#find_Last ) |
144
+ | levenshteinDistance($value1, $value2) | [ LEVENSHTEIN_DISTANCE(value1, value2)] ( https://www.arangodb.com/docs/stable/aql/functions-string.html#levenshtein_distance ) |
145
+ | lower($value) | [ LOWER(value)] ( https://www.arangodb.com/docs/stable/aql/functions-string.html#lower ) |
146
+ | ltrim($value, $char) | [ LTRIM(value, char)] ( https://www.arangodb.com/docs/stable/aql/functions-string.html#ltrim ) |
147
+ | regexMatches($text, $regex, $caseInsensitive) | [ REGEX_MATCHES(text, regex, caseInsensitive)] ( https://www.arangodb.com/docs/stable/aql/functions-string.html#regex_matches ) |
148
+ | regexReplace($text, $regex, $replacement, $caseInsensitive) | [ REGEX_REPLACE(text, search, replacement, caseInsensitive)] ( https://www.arangodb.com/docs/stable/aql/functions-string.html#regex_replace ) |
149
+ | regexSplit($text, $splitExpression, $caseInsensitive, $limit) | [ REGEX_SPLIT(text, splitExpression, caseInsensitive, limit)] ( https://www.arangodb.com/docs/stable/aql/functions-string.html#regex_split ) |
150
+ | regexTest($text, $search, $caseInsensitive) | [ REGEX_TEST(text, search, caseInsensitive)] ( https://www.arangodb.com/docs/stable/aql/functions-string.html#regex_test ) |
151
+ | rtrim($value, $char) | [ RTRIM(value, char)] ( https://www.arangodb.com/docs/stable/aql/functions-string.html#rtrim ) |
152
+ | split($value, $separator, $limit) | [ SPLIT(value, separator, limit)] ( https://www.arangodb.com/docs/stable/aql/functions-string.html#split ) |
153
+ | substitute($text, $search, $replace, $limit) | [ SUBSTITUTE(value, search, replace, limit)] ( https://www.arangodb.com/docs/stable/aql/functions-string.html#substitute ) |
154
+ | substring($value, $offset, $length) | [ SUBSTRING(value, offset, length)] ( https://www.arangodb.com/docs/stable/aql/functions-string.html#substitute ) |
155
+ | tokens($input, $analyzer) | [ TOKENS(input, analyzer)] ( https://www.arangodb.com/docs/stable/aql/functions-string.html#tokens ) |
156
+ | trim($value, $type) | [ TRIM(value, type)] ( https://www.arangodb.com/docs/stable/aql/functions-string.html#trim ) |
157
+ | upper($value) | [ UPPER(value)] ( https://www.arangodb.com/docs/stable/aql/functions-string.html#upper ) |
158
+ | uuid() | [ UUID()] ( https://www.arangodb.com/docs/stable/aql/functions-string.html#uuid ) |
157
159
158
160
159
161
### Type functions
0 commit comments