The reverse() function returns a string with the order of characters reversed from the given string.
reverse(str)
| Argument | Type | Description |
|---|---|---|
str | String | The string whose characetrs need to be reversed |
Return type: String
UQLreturn reverse("abc")
Result: cba
Retrieve API keys but reverse their characters for security concerns.
UQLfind().nodes({@api}) as apis return reverse(apis.key)