The upper() function converts all letters within a string to uppercase, leaving other characters unchanged, and returns the modified string.
upper(str)
| Argument | Type | Description |
|---|---|---|
str | String | The string to be modified |
Return type: String
UQLreturn upper("abc536")
Result: ABC536
Retrieve posts and showcase their titles in uppercase format.
UQLfind().nodes({@post}) as posts return upper(posts.title)